以下のコードで私が間違っていることを誰か教えてください。xml (text/xml または application/xml) を REST サービス (同じアプリ サーバー) に Ajax したい。
それを行うと、エラーコード 400 Bad Request が表示されます。
$.ajax({ type: 'POST',
url: '<url>',
data: '<?xml version="1.0" encoding="UTF-8"?><test>Hello World</test>',
contentType: 'text/xml',
dataType: 'xml',
processData: false,
cache: false,
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status +' '+thrownError);
},
success: function(xml) {
alert('it works: '+xml);
}
});
どんな助けでも大歓迎です。