why i can't see the decrypted text that server reply for the first post request? The seccond post is visible :/ asked 12 Jul '15, 05:43 Vladimir21 |
One Answer:
The first POST resulted in a server reply consisting of many TCP segments, many of which arrive out of order, whereas the second post gets only 2 segments that arrive in order. answered 12 Jul '15, 22:57 mrEEde |
But i can't see it decompresed .. if I export the stream to C array how can i know witch order is the right one(for concatenate)?
"Follow TCP Stream", which I believe is what you are trying, does not decompress the content!
So this question is about decompressing the gzip-ed http content of the first POST request? As per https://en.wikipedia.org/wiki/HTTP_compression
And the reply to the second post is also Content-Encoding: gzip ?
i use "Follow TCP Stream" to export all the reply to hex array for C++ to concatenate all of them to just one(to manual inflate gzip).
Booth of the request are to the same page (diferent post value) .. first reply contain a big text and i'm unable to see it .. seccond reply i can see the un-gziped text