Ticket #371 (closed bug: fixed)
ajax dosen't support xml posts
| Reported by: | sa.cesare@… | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | |
| Component: | ajax | Version: | |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$.ajax/$.post dosen't support xml as "data" for post to server.
Change History
comment:2 Changed 7 years ago by Andrey Skvor
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 7 years ago by joern
- Status changed from new to closed
- Resolution set to fixed
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.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

"xml" in which form? As a String? As a special XML object?