vote up 1 vote down star

I wonder if there is a .NET library that mimics a browser in terms of HTTP transactions. In other words I am going to make multiple GET/POST requests and I want the cookies to be persisted to a storage, so that consecutive request will be identified by the remote host. AFAIK cURL has support for this functionality.

flag

60% accept rate

2 Answers

vote up 1 vote down

The built in System.Net.HttpWebRequest class has support for cookies, but they are disabled by default for security reasons. You can enable them and persist them using CookieContainer

link|flag
vote up 0 vote down

Take a look at Fiddler. Its actually a debugging proxy which is handy for capturing an initial conversation. Its built in .NET and is quite scriptable in .NET languages.

link|flag

Your Answer

Get an OpenID
or

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