The mod_wsgi module for Apache is merely an implementation of the WSGI specification. That specification is a standard for Python web applications and frameworks to interface with an underlying web server.
What this mailing list does not do is assist in writing applications compliant with the WSGI specification. For details about WSGI itself you should go look at the site: www.wsgi.org as a starting point. WSGI is a very low level interface akin to CGI however and not recommended for beginners. What you should really do is choose a particular high level Python web framework for writing Python web applications and learn enough about it to work out what you need to do. This is the best approach as the better frameworks handle all that sort of stuff related to uploading of files for you. Thus you only need learn how that specific framework is used and how to access that feature. For the level of knowledge you are demonstrating and the need to potentially be helped at each step along the way, I would suggest perhaps you go look at web2py and talk with it's community. It could be seen as the PHP framework of Python. Easier perhaps than others for getting started, although not the best for larger web applications. For simple stuff however, it may be the simplest for you. Don't like web2py, then the frameworks I would recommend for the more experienced person are Flask, Werkzeug and Django. Graham On Wednesday, September 29, 2010, Diego H. <[email protected]> wrote: > If there any way to access to the Apache, and send a order to upload > the file? > > On Sep 27, 8:15 pm, "[email protected]" <[email protected]> wrote: >> On Sep 27, 2010, at 7:57 PM, Diego H. wrote: >> >> > Hello, i am working on a project what uses a xml structure for >> > transport the data and i faced some troubles to transfer files, >> > because theres no way to transfer files without using the <form>, and >> > i was thinking if there any way to access to the file in the client >> > computer, in the middle of the session? BTW:i had the path of the file. >> >> And this has what to do with mod_wsgi, exactly? >> >> S >> >> >> >> > -- >> > 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 >> > athttp://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. > > -- 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.
