Seems I found the problem with running wsgi application as Pylons controller: posted form data not available in wsgi application trough environ['wsgi.input']. This happens because at point, where wsgi application called, request input stream was already readed ( when PylonsBaseWSGIApp create WSGIRequest). Possible fix is to check controller's class before call setup_app_env in PylonsBaseWSGIApp, and don't call this method, if controller is not an ancestor of WSGIController.
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
