Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=81421 --- shadow/81421 2007-04-22 05:26:32.000000000 -0400 +++ shadow/81421.tmp.13359 2007-04-22 05:26:32.000000000 -0400 @@ -0,0 +1,60 @@ +Bug#: 81421 +Product: Mono: Class Libraries +Version: 1.2 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Sys.Web +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: CookieContainer: GetCookies adds cookie in wrong order + +Description of Problem: +When retrieving the cookies for a Uri, the cookies are added in the wrong +order. They are added from least specific (shortest matching uri path) to +most specific (longest matching uri path), but should instead be listed +from most specific to least specific. This is important when cookies have +the same name, as currently the least specific one is listed first, it will +shadow the more specific one. .Net adds cookies in the correct order. See +sample below. + +---- +using System; +using System.Net; + +namespace CookieTest { + class Program { + static void Main(string[] args) { + CookieContainer container = new CookieContainer(); + container.Add(new Cookie("name", "value1", "/path", "localhost")); + container.Add(new Cookie("name", "value2", "/path/sub", +"localhost")); + + CookieCollection cookies = container.GetCookies(new +Uri("http://localhost/path/sub")); + foreach(Cookie c in cookies) { + Console.WriteLine("{0}=\"{1}\"; path=\"{2}\"; +domain=\"{3}\"", c.Name, c.Value, c.Path, c.Domain); + } + } + } +} +---- + +Actual Results (as seen on mono): +name="value1"; path="/path"; domain="localhost" +name="value2"; path="/path/sub"; domain="localhost" + +Expected Results (as seen on .Net): +name="value2"; path="/path/sub"; domain="localhost" +name="value1"; path="/path"; domain="localhost" + +How often does this happen? +All the time. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
