[Mono-bugs] [Bug 74507][Cri] New - Multiple cookies problem

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 8 Apr 2005 06:55:41 -0400 (EDT)


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 informatique.internet@fiducial.fr.

http://bugzilla.ximian.com/show_bug.cgi?id=74507

--- shadow/74507	2005-04-08 06:55:41.000000000 -0400
+++ shadow/74507.tmp.27357	2005-04-08 06:55:41.000000000 -0400
@@ -0,0 +1,35 @@
+Bug#: 74507
+Product: Mono: Tools
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Critical
+Component: mod_mono
+AssignedTo: gonzalo@ximian.com                            
+ReportedBy: informatique.internet@fiducial.fr               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Multiple cookies problem
+
+I experienced a very strange problem with ASP.NET on mono...
+I try to add Cookies on the http response with this code :
+
+         HttpCookie cookie=new HttpCookie("CookieTitle","try");
+         HttpCookie cookie2=newHttpCookie("CookieTitle2","try");
+         this.Response.Cookies.Add(cookie);
+         this.Response.Cookies.Add(cookie2);
+ 
+ With the XSP webserver, the 2 cookies are seen by the browser : no problem
+ With mod_mono and apache2, I see only the last cookie added : cookie2
+ I've the same problem when I had more cookie, i see only the last one...
+it seems that mod_mono replace the last cookie added
+
+ Apparently, it's not a mono bug, but a mod_mono one, because it works with xsp
+ 
+ For information I use the last (this morning) svn version of xsp, mono and 
+ mod_mono (revision 42677)