2010/6/25 Bradley Hintze <[email protected]>: > I am a little confused about the 'WSGI server' in your tutorial. I am > running mod_wsgi on apache. Do i have to run the 'SWGI server', as in > your tutorial, thereby running two servers or can I just use apache? > Did that make sense?
That tutorial uses the Python built in server so you don't need to worry about configuration, just about WSGI. You can use the Python built in along side anything you have installed, or, at the expense of a bit of initial configuration confusion, any wsgi server you please. Clodoaldo > > On Fri, Jun 25, 2010 at 1:05 PM, Clodoaldo Neto > <[email protected]> wrote: >> 2010/6/25 Bradley Hintze <[email protected]>: >>> Do you know of any good tutorials minus django, cherrypy and the like; >>> just mod_wsgi alone??? >> >> I can't tell about the good part because I wrote it, but this one is pure >> wsgi: >> >> http://webpython.codepoint.net/wsgi_tutorial >> >> Regards, Clodoaldo >> >>> >>> On Fri, Jun 25, 2010 at 12:36 PM, Shivek Khurana <[email protected]> wrote: >>>> It can do a lot more. >>>> >>>> On Fri, Jun 25, 2010 at 9:29 PM, Bradley Hintze >>>> <[email protected]> wrote: >>>>> >>>>> Hi all, >>>>> >>>>> I'm a newbie to WSGI and am having trouble finding a tutorial of form >>>>> handeling using mod_wsgi without running into frame works such as >>>>> Django. Is there a tutorial on mod_wgsi form handeling without the >>>>> frame wroks? I want to take input from the client, use the input to >>>>> run a given python script and return HTML to the client bassed on the >>>>> script output. This is what I thaught WSGI did. Was I mistaken? >>>>> >>>>> Thanks >>>>> -- >>>>> Bradley J. Hintze >>>>> Graduate Student >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google Groups >>>>> "modwsgi" group. >>>>> To post to this group, send email to [email protected]. >>>>> To unsubscribe from this group, send email to >>>>> [email protected]. >>>>> For more options, visit this group at >>>>> http://groups.google.com/group/modwsgi?hl=en. >>>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google Groups >>>> "modwsgi" group. >>>> To post to this group, send email to [email protected]. >>>> To unsubscribe from this group, send email to >>>> [email protected]. >>>> For more options, visit this group at >>>> http://groups.google.com/group/modwsgi?hl=en. >>>> >>> >>> >>> >>> -- >>> Bradley J. Hintze >>> Graduate Student >>> Duke University >>> School of Medicine >>> 801-712-8799 >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "modwsgi" group. >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]. >>> For more options, visit this group at >>> http://groups.google.com/group/modwsgi?hl=en. >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "modwsgi" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/modwsgi?hl=en. >> >> > > > > -- > Bradley J. Hintze > Graduate Student > Duke University > School of Medicine > 801-712-8799 > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/modwsgi?hl=en. > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
