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

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