Re: Suitable software stacks for simple python web service

2012-11-24 Thread Kev Dwyer
Steve Petrie wrote: > On Thursday, November 22, 2012 1:42:42 AM UTC-5, Kev Dwyer wrote: >> Steve Petrie wrote: >> >> >> >> > On Wednesday, November 21, 2012 2:32:40 AM UTC-5, Kev Dwyer wrote: >> >> >> Hello List, >> >> >> >> >> >> >> >> >> >> >> >> I have to build a simple web service w

Re: Suitable software stacks for simple python web service

2012-11-24 Thread Steve Petrie
On Thursday, November 22, 2012 1:42:42 AM UTC-5, Kev Dwyer wrote: > Steve Petrie wrote: > > > > > On Wednesday, November 21, 2012 2:32:40 AM UTC-5, Kev Dwyer wrote: > > >> Hello List, > > >> > > >> > > >> > > >> I have to build a simple web service which will: > > >> > > >> > > >>

Re: Suitable software stacks for simple python web service

2012-11-22 Thread Kev Dwyer
Dieter Maurer wrote: > > From your description (so far), you would not need a web framework > but could use any way to integrate Python scripts into a web server, > e.g. "mod_python", "cgi", "WSGI", > Check what ways your web server will suport. Hello Dieter Thanks for your comment. I ce

Re: Suitable software stacks for simple python web service

2012-11-21 Thread Kev Dwyer
Steve Petrie wrote: > On Wednesday, November 21, 2012 2:32:40 AM UTC-5, Kev Dwyer wrote: >> Hello List, >> >> >> >> I have to build a simple web service which will: >> >> >> >> - receive queries from our other servers >> >> - forward the requests to a third party SOAP service >> >> - pr

Re: Suitable software stacks for simple python web service

2012-11-21 Thread Dieter Maurer
Kev Dwyer writes: > I have to build a simple web service which will: > > - receive queries from our other servers > - forward the requests to a third party SOAP service > - process the response from the third party > - send the result back to the original requester > > From the point of view

Re: Suitable software stacks for simple python web service

2012-11-21 Thread Steve Petrie
On Wednesday, November 21, 2012 2:32:40 AM UTC-5, Kev Dwyer wrote: > Hello List, > > > > I have to build a simple web service which will: > > > > - receive queries from our other servers > > - forward the requests to a third party SOAP service > > - process the response from the third pa

Suitable software stacks for simple python web service

2012-11-20 Thread Kev Dwyer
Hello List, I have to build a simple web service which will: - receive queries from our other servers - forward the requests to a third party SOAP service - process the response from the third party - send the result back to the original requester >From the point of view of the requester, th