xkcd
xkcd

Reputation: 2590

Using Wcf with gzip compression

We have a wcf service that takes large amount of data. As a requirement we want to take the request objects gzipped and response them using the same compression. How can I do this? I couldn't find any document describing this issue.

How can I develop a wcf soap service that works like that and how to consume this kind of services?

Upvotes: 3

Views: 9654

Answers (2)

TheNextman
TheNextman

Reputation: 12566

Microsoft has a sample that demonstrates this (you can compile their code, and simply plug it into your application)

GZip Encoder Sample

There is a more complete sample in the WCF/WF/Cardspace samples here:

Windows Communication Foundation Samples

If you look in WCF/Extensibility/MessageEncoder/Compression, there is a more complete sample with an example client and server

Upvotes: 6

Related Questions