Re: [Zope] XMLRPC:XML Compressors - anybody experienced it?

2000-10-02 Thread Skip Montanaro
Philipp> Did anybody play with XML compressors for Zope or at least have Philipp> a hint how to do that? I use a slightly modified version of Fredrik Lundh's xmlrpclib.py module that will often use zlib compression to compress responses. Running over a wide area network such as the Inte

Re: [Zope] XMLRPC:XML Compressors - anybody experienced it?

2000-09-30 Thread Chris McDonough
Phillip, If your data transfers are bounded between a number of systems that you control, it's possible to solve this problem the sledgehammer way by having them communicate via a channel such as a compressed ssh tunnel (if your processors aren't a bottleneck). -- Chris McDonough Digital Creati

[Zope] XMLRPC:XML Compressors - anybody experienced it?

2000-09-30 Thread Philipp Auersperg
Since XML blows lots of overhead over the line sending large amounts of data via XML becomes a performance question.   There exist XML-compressors, for example XMill that address this problem.   What I need is integrating such an XML compressor into the Zope XMLRPC mechanism, Before I do som