up vote 8 down vote favorite
5
share [g+] share [fb]

I'm confused how CookieContainer handles domain, so I create this test. This test shows cookieContainer doesn't return any cookie for "site.com" but according to RFC it should return at least 2 cookies.

Isn't it a bug?

How make it to work?

Here is a discussion about this bug:

http://social.msdn.microsoft.com/Forums/en-US/ncl/thread/c4edc965-2dc2-4724-8f08-68815cf1dce6

<%@ Page Language="C#" %>

<%@ Import Namespace="System.Net" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    CookieContainer getContainer()
    {
    	CookieContainer result = new CookieContainer();

    	Uri uri = new Uri("http://sub.site.com");
    	string cookieH = @"Test1=val; domain=sub.site.com; path=/";
    	result.SetCookies(uri, cookieH);

    	cookieH = @"Test2=val; domain=.site.com; path=/";
    	result.SetCookies(uri, cookieH);

    	cookieH = @"Test3=val; domain=site.com; path=/";
    	result.SetCookies(uri, cookieH);

    	return result;
    }

    void Test()
    {
    	CookieContainer cookie = getContainer();
    	lblResult.Text += "<br>Total cookies count: " + cookie.Count + " &nbsp;&nbsp; expected: 3";

    	Uri uri = new Uri("http://sub.site.com");
    	CookieCollection coll = cookie.GetCookies(uri);
    	lblResult.Text += "<br>For " + uri + " Cookie count: " + coll.Count + " &nbsp;&nbsp; expected: 2";

    	uri = new Uri("http://other.site.com");
    	coll = cookie.GetCookies(uri);
    	lblResult.Text += "<br>For " + uri + " Cookie count: " + coll.Count + " &nbsp;&nbsp; expected: 2";

    	uri = new Uri("http://site.com");
    	coll = cookie.GetCookies(uri);
    	lblResult.Text += "<br>For " + uri + " Cookie count: " + coll.Count + " &nbsp;&nbsp; expected: 2";

    }

    protected void Page_Load(object sender, EventArgs e)
    {
    	Test();
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>CookieContainer Test Page</title>
</head>
<body>
    <form id="frmTest" runat="server">
    <asp:Label ID="lblResult" EnableViewState="false" runat="server"></asp:Label>
    </form>
</body>
</html>
link|improve this question
I have tried this many times before as well. I ended up reading the cookie header myself and storing it somewhere else. – Nippysaurus Jun 26 '09 at 6:58
I have to use CookieContainer because it is the only way to send cookies to HttpWebRequest. – Salar Jun 26 '09 at 8:08
Can't believe I finally had a scenario where changing the framework from 4.0 to 3.5 (I wasn't using 4.0 stuff) broke my program. Took me some time to figure out, why the session cookies for authentication suddenly were missing. They fixed this issue in 4.0, so changing the framework introduced a bug into my program :-) – VVS Sep 7 '10 at 13:17
feedback

3 Answers

up vote 6 down vote accepted

Hi I just found the fix for this bug and discussed here: http://dot-net-expertise.blogspot.com/2009/10/cookiecontainer-domain-handling-bug-fix.html

Here the solution:

  1. Don't use .Add(Cookie), Use only .Add(Uri, Cookie) method.
  2. Call BugFix_CookieDomain each time you add a cookie to the container or before you use .GetCookie or before system use the container.

    private void BugFix_CookieDomain(CookieContainer cookieContainer)
    {
        System.Type _ContainerType = typeof(CookieContainer);
        Hashtable table = (Hashtable)_ContainerType.InvokeMember("m_domainTable",
                                   System.Reflection.BindingFlags.NonPublic |
                                   System.Reflection.BindingFlags.GetField |
                                   System.Reflection.BindingFlags.Instance,
                                   null,
                                   cookieContainer,
                                   new object[] { });
        ArrayList keys = new ArrayList(table.Keys);
        foreach (string keyObj in keys)
        {
            string key = (keyObj as string);
            if (key[0] == '.')
            {
                string newKey = key.Remove(0, 1);
                table[newKey] = table[keyObj];
            }
        }
    }
    

CallMeLaNN

link|improve this answer
Thank you so much! I spent 2 days debugging this, thinking a newbie like me should learn to figure libraries on my own. But it was a bug! – PRINCESS FLUFF Feb 7 '10 at 22:23
Argh... where does _ContainerType come from? My compiler won't find it! – PRINCESS FLUFF Feb 11 '10 at 10:35
Ah! I found it... You need to replace _ContainerType by cookieContainer.GetType() – PRINCESS FLUFF Feb 11 '10 at 10:46
Just edit it to add System.Type _ContainerType = typeof(CookieContainer); Note that use this for faster performance. Using cookieContainer.GetType() each time will consume more time. – CallMeLaNN Mar 14 '10 at 10:50
It's this weird stuff that I hate microsoft for, though normally I don't mind them so much. It can happen when getting results form some domains, my.opera.com being one of them. – PintSizedCat Jul 26 '10 at 17:07
feedback

Here is a hack to get around this bug: http://social.microsoft.com/Forums/en-US/netfxnetcom/thread/1297afc1-12d4-4d75-8d3f-7563222d234c It uses reflection.

link|improve this answer
Link is broken. – MikeWyatt Dec 16 '10 at 21:20
feedback

Your Answer

 
or
required, but never shown

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