Using the Cookie Web Client

I am using this extended version of WebClient to login to site:

public class CookieAwareWebClient : WebClient
{
        public CookieAwareWebClient()
        {
            CookieContainer = new CookieContainer();
        }
        public CookieContainer CookieContainer { get; private set; }

        protected override WebRequest GetWebRequest(Uri address)
        {
            var request = (HttpWebRequest)base.GetWebRequest(address);
            request.CookieContainer = CookieContainer;
            return request;
        }
}

      

And this way I send a cookie to the site:

using (var client = new CookieAwareWebClient())
{
    var values = new NameValueCollection
    {
        { "username", "john" },
        { "password", "secret" },
    };
    client.UploadValues("http://example.com//dl27929", values);

    // If the previous call succeeded we now have a valid authentication cookie
    // so we could download the protected page
    string result = client.DownloadString("http://domain.loc/testpage.aspx");
}

      

But when I run my program and log traffic to Fiddler, I get a 302 status code. I tested the request in Fiddler this way and everything is fine and I get a 200 status code. The
Fiddler request is:

GET http://example.com//dl27929 HTTP/1.1
Cookie: username=john; password=secret;
Host: domain.loc

      

And here is the request sent by the app:

POST http://example.com//dl27929 HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: www.domain.loc
Content-Length: 75
Expect: 100-continue
Connection: Keep-Alive

      

As you can see it doesn't send cookie.
Any idea?

+3


source to share


1 answer


Everything works fine, I just forgot to set the cookie, thanks Scott :



client.CookieContainer.SetCookies(new Uri("http://example.com//dl27929"), "username=john; password=secret;");

      

+1


source







All Articles