How to Access the http headers from WeBrowser

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to access the http headers of the 'conversations' between the
WebBrowser and the remote web server.

(ie those defined in RFC 2068 and later RFCs...
http://www.faqs.org/rfcs/rfc2068.html)

If not which objects are the best to use to have such a conversation. The
library is so huge that, as a beginner, I need a pointer. (Actually, I miss
pointers)
 
Paulustrious said:
Is it possible to access the http headers of the 'conversations'
between the WebBrowser and the remote web server.

(ie those defined in RFC 2068 and later RFCs...
http://www.faqs.org/rfcs/rfc2068.html)

If not which objects are the best to use to have such a conversation.
The library is so huge that, as a beginner, I need a pointer.
(Actually, I miss pointers)

You would need to implement a web proxy using HttpWebRequest and
HttpWebResponse, or plain sockets. Maybe this sample can get you
started: http://tinyurl.com/cw423

Cheers,
 
Back
Top