GZipStream is a .NET 2.0+ class for compression and decompression using gzip format.
0
votes
2answers
437 views
.NET GZipStream, and out of disk space exception
I am using the following code to write to a compressed file that I create new everytime.
using (FileStream fs = File.Open(sortOrderFileName, FileMode.Create,FileAccess.Write, FileShare.ReadWrite))
...
0
votes
2answers
1k views
Access to request HTTP headers in custom WCF MessageEncoder
Does anyone know how to get access to request HTTP headers within MessageEncoder.ReadMessage method?
It seems that WCF already "knows" request headers at the point of invoking ReadMessage method, at ...
1
vote
1answer
727 views
Problem with decompress, GZipStream
I have problem with decomress gzip:
string fileData = string.Empty;
// byte[] starts with 31 and 139
var gzBuffer = entity.Data.Skip(pos).ToArray();
using (GZipStream stream = new GZipStream(new ...
0
votes
1answer
192 views
Gzip is messing AjaxControlToolKit
There is a form which contain a tabcontainer and watermark control from ajaxcontroltoolkit. It's
Giving java error: Sys.Extended is undefined when using the following gzip procedure. The following ...
0
votes
1answer
83 views
How to get type and number of .zip contents
How can i get the content names of a zipped folder in C# i.e. name of files and folders inside the compressed folder?
I want to decompress the zip by using GZipStream only.
thanks,
kapil
3
votes
0answers
182 views
Ksoap exception in j2me
I am create one J2ME application which call to .NET WCF web service and me used ksoap.
I am using netbeans IDE.
But when I run that application then gives run time exception is
...
1
vote
0answers
29 views
How to Gzip Decompress only one column in JSON response using web browser
Is there a way to decompress only one column in JSON file (one column is GZIP compressed on server not entire JSON file/response) using web browser and not some JavaScript library ?
1
vote
0answers
229 views
boost: Uncompress http response using gzip failed
I'm trying to uncompress http body response using boost gzip filters. I'm using the standard code example provided everywhere:
std::string source = "c:\\install\\data.gz";
std::string destination = ...
1
vote
0answers
234 views
Why does HttpWebResponse try to decompress the stream using GZip when Content-Encoding is empty?
I've looked at a lot of Q&As around this subject and got to the point where I use the following code in order to get the bytes from a given URI:
var request = ...
1
vote
0answers
181 views
Can I better compress multiple SQLite3 DB's individually or altogether?
I am working on a program in C# that deals with multiple database files at once to create a sort of cache that a user can choose later to compress and archive. I am using SQLite3 for these databases. ...
1
vote
0answers
207 views
GZipStream over .NET webservice causes invalid character issue
I'm working on a complex .NET client server architecture customization and I absolutely have no control over request/reply sent or received except that I can add my stuff to the request/reply objects.
...
1
vote
0answers
540 views
How to achieve minimum size when compressing small amount of data lossless?
I don’t understand the answer to ”Why does gzip/deflate compressing a small file result in many trailing zeroes?”
(Why does gzip/deflate compressing a small file result in many trailing zeroes?)
How ...
0
votes
0answers
7 views
How do you test a System.IO.MemoryStream to see if it is a System.IO.Compression.GZipStream?
Is there a good way to test a System.IO.MemoryStream to see if it is a System.IO.Compression.GZipStream?
I know I can just call Read and then catch the InvalidDataException with the The magic number ...
0
votes
0answers
93 views
gzipstream compression then moving compressedfile and deleting original
I am trying to compress a folder with thousands of files and do some cleanup on the folder. The code I have works fine in compressing each file but I would like to delete the original file and then ...
0
votes
0answers
195 views
WebClient GZipStream Decompress Response stream.Read length 0
I'm completely stumped as to how to decompress a gzip response. Here's the code I am using:
using (WebClient wc = new WebClient())
{
wc.Headers["Accept"] = ...