> In my application transferring large xml data over the network
> with
[quoted text clipped - 6 lines]
>
> What i have to do,in what way i have to compress the xml string?
.NET 2.0 web services do not support IO streams. WCF however does have
streaming support (but not sure if you can use a compressed stream).
Nevertheless, you can enable GZIP compression in IIS, that should provide
you with some compression.
If you need additional compression (i.e. application level), you'll need to
write your own serialization/deserialization routines.

Signature
spamhoneypot@rogers.com (Do not e-mail)
Sel - 26 Mar 2008 01:00 GMT
Thanks for your reply,
I have IIS 5.0 + windows XP. Is compression available in IIS 5.0 ?
If so how to enable GZip compression feature in IIS 5.0?
> > In my application transferring large xml data over the network
> > with
[quoted text clipped - 15 lines]
> If you need additional compression (i.e. application level), you'll need to
> write your own serialization/deserialization routines.
Spam Catcher - 26 Mar 2008 03:01 GMT
> Thanks for your reply,
>
> I have IIS 5.0 + windows XP. Is compression available in IIS 5.0 ?
>
> If so how to enable GZip compression feature in IIS 5.0?
I believe you'll need IIS 6.0. It's a configuration option in one of the
panels.
In 5.0 you'll need to activate it through the registration or use Port 80'
Software's HTTPZIP to activate GZIP:
http://www.port80software.com/products/httpzip/

Signature
spamhoneypot@rogers.com (Do not e-mail)