On Feb 8, 3:33 pm, arun.hal... RemoveThis @gmail.com wrote:
> Hi,
>
> I have a file which i think has encoded chunked data. The reason i
> think this is because i copied a post command from an application
> called Fiddler, and saved the results to a file.
>
> Now i'm trying to decode this information. Fiddler seems to be able to
> do it by clicking the 'Remote HTTP Chunked Encoding' button.
>
> Can anyone tell me what this is doing? Or how to decode a file with
> chunked data in it.
>
> Thanks
Look up the definition of chunked encoding on w3.org
It looks like this:
<HEX VALUE OF CHUNK WITH LENGTH=N>\r\n
CHUNK WITH LENGTH=N\r\n
<HEX VALUE OF CHUNK WITH LENGTH=M>\r\n
CHUNK WITH LENGTH=M\r\n
... repeats
0\r\n
\r\n
//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//