On 20 September 2010 03:59, Ivan Voras <[email protected]> wrote:
> and the problem is that, even though all other fields contain the
> right values, request.args is empty, when it should contain form
> fields from the POST method.
>
> Any ideas what is wrong here?
More details, in case it helps: this is how the application is started:
session_store = FilesystemSessionStore(path = "/tmp")
application = SessionMiddleware(application, session_store,
cookie_httponly=True)
application = SharedDataMiddleware(application, {
'/res': path.join(root_path, 'res')
})
# if the script is called from the command line start the application
# with the development server on localhost:4000
if __name__ == '__main__':
from werkzeug import run_simple
run_simple('', 4000, application)
--
You received this message because you are subscribed to the Google Groups
"pocoo-libs" 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/pocoo-libs?hl=en.