PRB: XMLHttpRequest setRequestHeader Method and Cookies (234486)
The information in this article applies to:
- Microsoft Internet Explorer (Programming) 5
- Microsoft Internet Explorer (Programming) 5.5
- Microsoft XML 3.0
- Microsoft XML 3.0 SP1
- Microsoft XML 4.0
This article was previously published under Q234486 SYMPTOMS
When using the XML Document Object Model (DOM), the setRequestHeader method on the XMLHttpRequest object does not seem to set cookie headers as expected. The first call to setRequestHeader using the Cookie HTTP header seems to have no effect.
RESOLUTION
To add cookies to the request, the call to setRequestHeader for the Cookie header must be repeated because the first call is ignored:
'this value is ignored, but the step is necessary
xmlRequest.setRequestHeader "Cookie", "any non-empty string here"
'set all cookies here
xmlRequest.setRequestHeader "Cookie", "cookie1=value1; cookie2=value2"
Note that setting cookies in this manner is atypical. Cookies are best set by the server using the Set-Cookie header.
REFERENCES303207 INFO: Installation of MSXML Parser Affects Run Mode
Modification Type: | Major | Last Reviewed: | 5/12/2003 |
---|
Keywords: | kbprb KB234486 |
---|
|