Also, as per computer-internet.marc8.com/encoding-issue-xmlhttprequest-and-firefox-3-christian-sto
In Firefox 3.0.0 there is a "strange" regression issue regarding the encoding of XMLHttpRequest requests.
It's not a bug per se, it's just different behavior, which we ran into (and no other browser does it this way)
What we basically do on the client side in javascript:
this.data = new XMLHttpRequest(); this.data.open('POST', dataURI); this.data.send(xml);
where "xml" is a DOMDocument Object.
In Firefox 2.0 this request came with a
Content-Type: application/xml
and the xml in the POST...
Last edited by NickJ; 08-07-2008 at 17:53.
|