DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=33900>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=33900

           Summary: Multiple Cookies cannot be set from ASP.NET application
           Product: Apache mod_aspdotnet
           Version: 2.0.0
          Platform: PC
               URL: http://polidea.pl
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Apache.Web
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Multiple Cookies cannot be set from ASP.NET application because they are
replaced by function apr_table_setn.

Fix:

WorkerRequest.h, Line 542
virtual void SendKnownResponseHeader(int index, String* value)

if (index == HeaderContentType)
    ap_set_content_type(rr, poolval);
else
if(index == HeaderSetCookie)
        apr_table_addn(rr->headers_out, response_headers_name_c[index], 
poolval);
else
    apr_table_setn(rr->headers_out, response_headers_name_c[index], poolval);

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to