gzipstream
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[详细]
2023-04-11 01:47 分类:问答GZipStream effectivness
I am trying to save big UInt16 array into a file. positionCnt is about 50000, stationCnt is about 2500. Saved directly, without GZipStream, the file is about 250MB which can be compressed by exter开发[详细]
2023-04-08 05:14 分类:问答C# HttpListener Response + GZipStream
I use HttpListener for my own http server (I do not use IIS). I want to compress my OutputStream by GZip compression:[详细]
2023-04-05 00:45 分类:问答'System.IO.Compression.GZipStream' cannot be serialized. Consider marking it with the DataContractAttribute attribute
I am trying to use WCF service to upload GZip files. Im trying to compress files using Gzip and then passing it through to WCF service to be uploaded to server.[详细]
2023-04-03 01:53 分类:问答Send/Receive GZip compressed MSMQ messages in C#
I am trying to send large objects (>30MB) to a MSMQ queue. Due to the large amount of data we are are tring to send the idea was to GZip the objects prior to sending them, then unzipping them on the r[详细]
2023-04-01 12:56 分类:问答GZIP output stream
I am trying to GZIP some XML that gets streamed over HTTP (not a web service) if (ZipOutpu开发者_运维技巧t)[详细]
2023-03-20 09:29 分类:问答How to decompress GZip in Stream (C#)?
This code receives the GZip-encoded string. How can I de开发者_运维知识库code it? Stream stream = ret.GetResponseStream();[详细]
2023-03-17 15:38 分类:问答What is the difference between zlib's gzip compression and the compression used by .NET's GZipStream?
Having an odd problem - one of my app suites has to read/write gzip-compressed files that are used on both Windows and Linux, and I am finding that the files I generate using zlib on Linux are 2-3 tim[详细]
2023-03-16 19:36 分类:问答GZipStream compression problem ( Lost Byte )
I\'ve got some strange problem with GZip Serializer. Trying serializing object with data in it. Following code give results(开发者_运维问答at POINT1 in debug): ms.Length = 100028 and uncompressedS[详细]
2023-03-12 08:55 分类:问答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();[详细]
2023-03-05 20:06 分类:问答