vote up 0 vote down star

I am doing some http request with WinHttp.lib,

while Get data with Range header, such as

"GET someURL\r\n Range: bytes=4096-8191,0-4095",

received the respone data after response header like this(according to RFC2616):

================================

--46228a661764c4210

Content-type: text/plain

Content-range: bytes 4096-8191/14065

...Content Data of Rang#1

--46228a661764c4210

Content-type: text/plain

Content-range: bytes 0-4095/14065

...Content Data of Rang#2

--46228a661764c4210--

Then ,is there any efficient way to extract the Content Data that i exactly expected of each range,while data's received as stream.

flag

1 Answer

vote up 0 vote down

Have you tried Fiddler?

link|flag
I am using HTTP as Transfer Protocol in a C++ project, anyway ,thx for Fiddler, a cool tool. – KrzyCube Feb 6 '09 at 3:25

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.