I've found a temporary workaround... it seems to be related to the
wsgi.input not being available (see here for a hint
http://pythonpaste.org/archives/message/20060316.210119.474772b3.en.html).
To get things working, I've modified wsgiapp.py at line 27, like so:

            try:
                if environ.get('REQUEST_METHOD') == 'OPTIONS':
                    from StringIO import StringIO
                    environ['wsgi.input'] = StringIO('')

                return self.app.handle(environ, start_response)


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to