Opened 16 years ago
Closed 16 years ago
#371 closed bug (fixed)
ajax dosen't support xml posts
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | critical | Milestone: | |
Component: | ajax | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$.ajax/$.post dosen't support xml as "data" for post to server.
Change History (3)
comment:1 Changed 16 years ago by
Milestone: | 1.0 |
---|---|
Version: | 1.0 |
comment:2 Changed 16 years ago by
Form dosen't matter really,but xmlhttp supports "oXMLHttpRequest.send(varBody);",see msxml sdk docs for reference-it's ms technology anyway;-) JQuery assume only "multipart" encoding,I presume,for posts-that's the problem I'm talking about. If you will not use any encoding at all,probably you'll get expected behavior in current implementation.I'm used to make simply req.send(xmldoc.xml) request.
comment:3 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed in SVN.
Added option to override Content-Type header (contentType), default is still "application/x-www-form-urlencoded".
If your xml isn't in string format and should not be processed to a query string, set the processData option to false.
"xml" in which form? As a String? As a special XML object?