How can i get the web representation of a received http-request?
I recently asked a question on how i could circumvetnt a website censorship through a third anonymizer website.the result indicated i sniff the traffic and create the post url myself.
This stage is almost done.Now i need to get the page as a result.
How can i get the web representation of a received http-request ? I recently
Share
If you’re using Winforms, you could go with the
WebBrowserclass.(From MSDN)
You wish to save the response to disk. Ok, typically this is the sequence you’d take:
HttpWebRequestclass.GetResponsemethod. This will return anHttpWebResponseobject.GetResponseStreamon that response object, and then<sidenote>You should try and be a bit more clear in your question. I interpret the “web representation” of an HTTP request to be a “web page”, as displayed in a browser. You never mentioned that you wanted to save the reply to disk.