I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields.
Something like firefox live headers, but for the server side.
|
|
I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields. Something like firefox live headers, but for the server side.
|
||
|
|
|
|
The middleware
The test
See also the werkzeug debugger Armin wrote, it's usefull for interactive debugging. |
|||
|
|
|
|
The mod_wsgi documentation provides various tips on debugging which are applicable to any WSGI hosting mechanism and not just mod_wsgi. See: http://code.google.com/p/modwsgi/wiki/DebuggingTechniques This includes an example WSGI middleware that captures request and response. |
||
|
|
|
|
If you want Apache-style logs, try paste.translogger But for something more complete, though not in a very handy or stable location (maybe copy it into your source) is wsgifilter.proxyapp.DebugHeaders And writing one using WebOb:
|
||
|
|
|
|
That shouldn't be too hard to write yourself as long as you only need the headers. Try that:
|
||
|