Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #33787 > unrolled thread

Re: Suitable software stacks for simple python web service

Started byDieter Maurer <dieter@handshake.de>
First post2012-11-22 07:37 +0100
Last post2012-11-22 07:37 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Suitable software stacks for simple python web service Dieter Maurer <dieter@handshake.de> - 2012-11-22 07:37 +0100

#33787 — Re: Suitable software stacks for simple python web service

FromDieter Maurer <dieter@handshake.de>
Date2012-11-22 07:37 +0100
SubjectRe: Suitable software stacks for simple python web service
Message-ID<mailman.194.1353566257.29569.python-list@python.org>
Kev Dwyer <kevin.p.dwyer@gmail.com> 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 of the requester, this will happen within the scope 
> of a single request.  
>
> The data exchanged with the original requester will likely be encoded as 
> JSON; the SOAP service will be handled by SUDS.
>
> The load is likely to be quite light, say a few requests per hour, though 
> this may increase in the future.
>
> Given these requirements, what do you think might be a suitable software 
> stack, i.e. webserver and web framework (if a web framework is even 
> necessary)?  

>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.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web