Tagged Questions
2
votes
1answer
1k views
GzipStream (.net 4.0) 4GB problem
I am having trouble programmatically unzipping a 3GB (7GB uncompressed) gzip file using the built in .net 4.0 Gzip and Deflate Classes.
My understanding is that they should both support files over ...
0
votes
1answer
558 views
Compression/Decompression for DataSet or any .Net Object
I'm developing a WPF App, in which I want to encrypt and compress heavy DataSet or Objects (<2MB) and send it across over the network. The other party would decompress and decrypt the data and ...
6
votes
5answers
2k views
GZipStream and DeflateStream produce bigger files
I'm trying to use deflate/gzip streams in C# but it appears that the files after compression are bigger than before.
For example, I compress a docx file of 900ko, but it produce a 1.4Mo one !
And it ...
0
votes
2answers
301 views
how to both Compress and Minify content together?
i know we can compress response by declaring Response.Filter as GZip or Delfalte streams, but how i can perform both compression and minification together? declaring new class that inherits Stream, ...
1
vote
1answer
745 views
Do an HTTP Post in .NET (Vb) with compressed data using deflatestream
The data that I am posting from a VB.Net client is large and I want to compress.
I want to do a "POST" and the apache server supports mod_deflate.
I am trying to integrate DeflateStream into my post ...