Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
846 views

How to compress a HttpWebRequest POST

I am trying to post data to server that accepts compressed data. The code below works just fine, but it is uncompressed. I have not worked with compression or Gzip beofre, so any help is appriciated. ...
2
votes
1answer
64 views

How to omit file path compression?

I have a process that injects environment variables while the process is running and all that works fine. However, when I expand one of the environment variables ...
1
vote
1answer
114 views

What does it mean for a .swf file to be compressed? [closed]

I tried converting a .swf file into .avi through ffmpeg, and I got the error 'compressed swf format not supported'. How does a compressed .swf differ from an uncompressed .swf file? How do you specify ...
1
vote
2answers
239 views

Receive compressed data using Boost::asio

I have a client that sends me data using this function: void CServerRetrieve::Send(char *buf, DWORD size, int flags) { unsigned char *zlib; unsigned long szzlib; m_zlib.Deflate((unsigned ...
0
votes
3answers
49 views

Proof for number of internal nodes in a tree

I was reading about compressed tries and read the following: a compressed trie is a tree which has L leaves and every internal node in the trie has at least 2 children. Then the author wrote that a ...
0
votes
1answer
40 views

indexed flat-files

We have a batch analytical SQL job – run once daily – that reads data from 2 source tables held in a powerful RDBMS. The source tables are huge (>100TB) but has less than 10 fields combined. The ...
0
votes
0answers
191 views

How to extract an XML document from a BLOB column in Oracle thats been compressed in Java

I have a table in Oracle 11G (11.1) that has a BLOB column containing XML documents. The XML document has been written to the table using a java program and has been serialised and compressed using ...
0
votes
0answers
142 views

Compressed xml HttpPost problem in android

Hi i want to execute HttpPost request with compressed xml. problem is when i compress xml and send it over HTTP then GZIP stream changes to string and server refuses to recognize it as GZIP stream and ...
0
votes
1answer
299 views

Extracting compressed files

The following code allows me to extract .tgz files. However, it stops extracting after about two levels down; there are other subfolders that have .tgz files that need extracting. Additionally, when I ...
0
votes
2answers
120 views

How to I find out the size of a GZIP section embedded in firmware?

I am currently analyzing firmware images which contain many different sections, one of which is a GZIP section. I am able to know the location of the start of the GZIP section using magic number and ...
0
votes
1answer
517 views

How to create Bitmap from (Compressed format) Bitmap Info Header and Scanlines in WPF?

I am using SampleGrabber in DirectShow on windows 7, I noticed that the Code supplied by Microsoft and many other providers dont work because the Bitmap data header reports that bitmap data is ...
0
votes
2answers
123 views

Loading ruby source from a zip archive?

I have a mod_rails server where disk space, oddly enough, is at a premium. Is there a way for me to compress my application's source, like Python's zipimport? There are obvious disadvantages to ...