At 03:34 PM 6/9/2005 -0700, [EMAIL PROTECTED] wrote: >The only limitation in WSGI I've found is you can't serialize it for IPC >since it contains an open file descriptor.
That's quite a generalization there. First, many WSGI implementations don't have a file descriptor involved. Second, there are lots of ways to serialize things, including e.g. transmitting file descriptors via Unix-domain sockets. Third, nothing stops you from reading the data and sending *that* via your IPC mechanism. Fourth, you can always do IPC via HTTP. :) But if what you meant was that pickle, marshal, and XML-RPC won't handle some kinds of file-like objects very well, then, yes, and disregard the previous paragraph. :) _______________________________________________ Web-SIG mailing list [email protected] Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com
