Further to this, things seem to be hanging way down in socket.py, line
340:

           while True:
                data = self._sock.recv(self._rbufsize)
                if not data:
                    break

This is called by cgi.py which is in turn called by WSGIHandler from
Myghty. My guess is for some reason the wsgi.input is not being
properly passed. This is in Pylons-dev.

Stack data is roughly:

wsgiapp.py line 28, in _call
 return self.app.handle(environ, start_response)

WSGIHandler.py line 59, in handle
 httpreq = WSGIRequest(environ, start_response)

WSGIHandler.py line 87, in __init__
  self.fieldstorage = cgi.FieldStorage(fp = environ['wsgi.input'],
environ, keep_blank_values= True)

cgi.py, line 528, in__init__
 self.read_single()

cgi.py line 661, in read_single
 self.read_lines()

cgi.py line 685, in read_lines
  self.read_lines_to_eof()

cgi.py line 698, in read_lines_to_eof
 line = self.fp.readline()

socket.py line 340, in readline
 While True

Any ideas on how to proceed?

Neil


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