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

Re: python web service or Apache?

2009-10-26 Thread Gabriel Genellina
En Sun, 25 Oct 2009 17:47:43 -0300, Peng Yu escribió: Although, python can be used to provide web service. The following webpage also mentioned, "Apache the best and most widely used web server on the Internet today, check it out. If you want to run your own web server this is the one to get, y

Re: python web service or Apache?

2009-10-26 Thread Paul Rubin
ru...@yahoo.com writes: > Apache requires root access to the server machine, Only to access the privileged ports. > A small simple custom web server built with Python will likely... > You can run it on a non-privileged port if you do not have > root access to your server machine. You can do that

Re: python web service or Apache?

2009-10-26 Thread rurpy
On 10/26/2009 08:00 AM, Peng Yu wrote: > On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: >> On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >>> Although, python can be used to provide web service. The following >>> webpage also mentioned, "Apache the best and most widely used web >>> server

Re: python web service or Apache?

2009-10-26 Thread Simon Forman
On Mon, Oct 26, 2009 at 10:00 AM, Peng Yu wrote: > On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: >> On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >>> Although, python can be used to provide web service. The following >>> webpage also mentioned, "Apache the best and most widely used web

Re: python web service or Apache?

2009-10-26 Thread Peng Yu
On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: > On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >> Although, python can be used to provide web service. The following >> webpage also mentioned, "Apache the best and most widely used web >> server on the Internet today, check it out. If you

Re: python web service or Apache?

2009-10-25 Thread Simon Forman
On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: > Although, python can be used to provide web service. The following > webpage also mentioned, "Apache the best and most widely used web > server on the Internet today, check it out. If you want to run your > own web server this is the one to get, yo

python web service or Apache?

2009-10-25 Thread Peng Yu
Although, python can be used to provide web service. The following webpage also mentioned, "Apache the best and most widely used web server on the Internet today, check it out. If you want to run your own web server this is the one to get, you can get binaries for both Windows and Unix. You can dow

Re: Python web service ...

2006-08-30 Thread Gabriel Genellina
At Wednesday 30/8/2006 07:25, NicolasG wrote: You mean to use only python HTTP socket library ? I never had use sockets before, it has a big learning curve ? > >If I want to run my program as a web service I need to setup a > >webserver , am I right ? > >Whars that difference ? can a webservi

Re: Python web service ...

2006-08-30 Thread Steve Holden
NicolasG wrote (top-posting, which is very naughty ...): >>At Monday 28/8/2006 20:45, Nicolas G wrote: >> >> >>>If I want to run my program as a web service I need to setup a >>>webserver , am I right ? >>>Whars that difference ? can a webservice be run without a webserver ? >> >>Well, a webservice

Re: Python web service ...

2006-08-30 Thread NicolasG
You mean to use only python HTTP socket library ? I never had use sockets before, it has a big learning curve ? Gabriel Genellina wrote: > At Monday 28/8/2006 20:45, Nicolas G wrote: > > >If I want to run my program as a web service I need to setup a > >webserver , am I right ? > >Whars that differ

Re: Python web service ...

2006-08-28 Thread Gabriel Genellina
At Monday 28/8/2006 20:45, Nicolas G wrote: If I want to run my program as a web service I need to setup a webserver , am I right ? Whars that difference ? can a webservice be run without a webserver ? Well, a webservice uses HTTP as its transport protocol, so you need an HTTP server, but you

Re: Python web service ...

2006-08-28 Thread Nicolas G
If I want to run my program as a web service I need to setup a webserver , am I right ? Whars that difference ? can a webservice be run without a webserver ? On 8/29/06, Jorge Vargas <[EMAIL PROTECTED]> wrote: > On 26 Aug 2006 04:07:35 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi fol

Re: Python web service ...

2006-08-28 Thread Jorge Vargas
On 26 Aug 2006 04:07:35 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi folks, I have accomplished to make a python program that make some > image manipulation to bmp files. > I now want to provide this program as a web service. A user can visit a > site and through a web interface he shou

Re: Python web service ...

2006-08-28 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > Hi folks, I have accomplished to make a python program that make some > image manipulation to bmp files. > I now want to provide this program as a web service. A user can visit a > site and through a web interface he should upload the file to the web > server , the ser

Re: Python web service ...

2006-08-26 Thread Luis M. González
[EMAIL PROTECTED] wrote: > My question is how difficult is to set up a web server that can run > python easy ? should I try ZOPE or there is something better in mind ? I also second the suggestion of using Karrigell. It comes with its own built-in server, and the task would be as simle as writing

Re: Python web service ...

2006-08-26 Thread Ramon Diaz-Uriarte
On 26 Aug 2006 09:12:50 -0700, NicolasG <[EMAIL PROTECTED]> wrote: > > For a one-shot thing, plain old CGI might be enough. You can have a > > static HTML page with the form for the upload, have python do the > > image part, and generate the return HTML with the image with a python > > script. If

Re: Python web service ...

2006-08-26 Thread iapain
> My question is how difficult is to set up a web server that can run > python easy ? should I try ZOPE or there is something better in mind ? Just install Apache and run Python as CGI thats the best solution I found for my apps. Thats the best and faster way to move python apps on web. -- http:

Re: Python web service ...

2006-08-26 Thread Ravi Teja
Tim Williams wrote: > > At this time right now I prefer to do something that works the quickest > > possible... > > I never had any experience with CGI, do I need to set up a web server > > for that ? > > can you point me some usefull reading material so I can get a start ? > > I will post for a c

Re: Python web service ...

2006-08-26 Thread Tim Williams
> At this time right now I prefer to do something that works the quickest > possible... > I never had any experience with CGI, do I need to set up a web server > for that ? > can you point me some usefull reading material so I can get a start ? > I will post for a comment at Zope , I had installed

Re: Python web service ...

2006-08-26 Thread NicolasG
> For a one-shot thing, plain old CGI might be enough. You can have a > static HTML page with the form for the upload, have python do the > image part, and generate the return HTML with the image with a python > script. If you plan to do this a lot, or want fairly sophisticated > stuff, or DB acce

Re: Python web service ...

2006-08-26 Thread Ramon Diaz-Uriarte
On 26 Aug 2006 04:07:35 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi folks, I have accomplished to make a python program that make some > image manipulation to bmp files. > I now want to provide this program as a web service. A user can visit a > site and through a web interface he shou

Python web service ...

2006-08-26 Thread nicolasg
Hi folks, I have accomplished to make a python program that make some image manipulation to bmp files. I now want to provide this program as a web service. A user can visit a site and through a web interface he should upload the file to the web server , the server then will do the image process wit