Is there a way to intercept a call made by WebBrowser to SSL (within in an asp.net application)? I need to pass parameters to http-headers at runtime before the request is made.
Example: if I type "http://test.com", the browser communicates with the server and returns "https://test1.com" as the secured url. I should be be able to intercept the call and pass in headder information (key, value that determines the original host) to http://test.com. Or is there a better solution to achieve this?
Thanks in advance