Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Joel Mueller
scussion [mailto:[EMAIL PROTECTED]] > On Behalf Of franklin gray > Sent: Thursday, May 02, 2002 3:28 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] HTTP Compression of XML WebServices > > > Joellook what I have found. Interesting test results. > > All done wi

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread franklin gray
) MyDS.ReadXml(S) MsgBox(MyDS.GetXml) End Sub -Original Message- From: Joel Mueller [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 2:45 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] HTTP Compression of XML WebServices Oh, now this is interesting: If I open up the

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Peter Waldschmidt
r. I learned this the hard way. > -Original Message- > From: franklin gray [mailto:[EMAIL PROTECTED]] > Posted At: Thursday, May 02, 2002 3:02 PM > Posted To: DOTNET > Conversation: Re: [DOTNET] HTTP Compression of XML WebServices > Subject: Re: [DOTNET] HTTP Compres

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Chris Kinsman
I have seen a SoapExtension that used NZipLib to do compression/decompression on both client and server sides. I didn't write it so I can't pass it out freely. I will have to leave that up to the author. SoapExtensions are definitely the way to go in this case... You can read messages from the

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Joel Mueller
compressed binary is so close to the size of the XML file. > -Original Message- > From: Joel Mueller [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 02, 2002 2:42 PM > To: 'dotnet discussion' > Subject: RE: [DOTNET] HTTP Compression of XML WebServices > > >

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Joel Mueller
ROTECTED]] > On Behalf Of franklin gray > Sent: Thursday, May 02, 2002 2:02 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] HTTP Compression of XML WebServices > > > ohwell that makes things a little different. I guess I > should have asked about that sooner:-( Thank

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread franklin gray
dataset from xml. Does anybody have an example of a binary serialization of a dataset avaiable? -Original Message- From: Marsh, Drew [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 1:44 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] HTTP Compression of XML WebServices franklin

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Joel Mueller
f Of Robert Isaacs > Sent: Thursday, May 02, 2002 12:36 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] HTTP Compression of XML WebServices > > > The way you are doing this seems like a lot of work. > > I take the xml representation of the dataset and compress it > into

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Marsh, Drew
From: Carl Schei [mailto:[EMAIL PROTECTED]] wrote: > Essentially I need a handle to the response stream that arrives on the client side. > I can't seem to find any way of hooking into this process? The web proxy doesn't > seem to allow one to chain into the response before it processes it. Actua

Re: [DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Robert Isaacs
from the xml. We tend to get extremely high levels of compression this way (as you should with xml data). Thanks, Robert -Original Message- From: Carl Schei [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 1:27 PM To: [EMAIL PROTECTED] Subject: [DOTNET] HTTP Compression of XML

[DOTNET] HTTP Compression of XML WebServices

2002-05-02 Thread Carl Schei
Hi There, I am trying to generically compress data between a thick windows client and a web service (thanks to http://discuss.develop.com/archives/wa.exe?A2=ind0203A&L=DOTNET&P=R47498) In order to do this I have created an HttpModule that adds a compression filter to the response stream. All loo