我正在为远程 XML 服务构建一个接口。这是我的 $.ajax 函数:
this.sendInput = function () {
jQ.ajax({'url': URL,
'type': 'POST',
'data': app._CONTENT,
'contentType': 'text/xml',
'dataType': 'XML',
'error': function (data) { app.processError(data); },
'success': function(data){ app._OUTPUT = data; app.processOutput(); }});
};
当我使用 Chrome 将此请求发送到服务器时,我会收到带有以下标头的 200 响应:
Accept:application/xml, text/xml, \*/\*; q=0.01
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Cache-Control:no-cache
Connection:keep-alive
Content-Length:930
Content-Type:text/xml
Host:host.com
Origin:http://elsewares.org
Pragma:no-cache
Referer:http://blah.org
User-Agent:Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17
当我在 Firefox 12 中发送相同的请求时,我收到带有以下请求标头的 415 错误:
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding gzip, deflate
Accept-Language en-US,en;q=0.5
Access-Control-Request-He... content-type
Access-Control-Request-Me... POST
Cache-Control no-cache
Connection keep-alive
Host host.com
Origin http://host.org
Pragma no-cache
User-Agent Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0 FirePHP/0.7.1
x-insight activate
我应该注意服务器设置为允许 Access-Control-Request-Headers: Content-Type,因此我们可以将 POST 请求的正文设置为 XML。
任何想法这里的不匹配是什么?Firefox 是必须的,它才能在将要使用的环境中工作。
这是请求的正文:
<?xml version="1.0" encoding="UTF-8" ?>
<MELTSinput>
<initialize>
<SiO2>48.68</SiO2>
<TiO2>1.01</TiO2>
<Al2O3>17.64</Al2O3>
<Fe2O3>0.89</Fe2O3>
<Cr2O3>0.0425</Cr2O3>
<FeO>7.59</FeO>
<MnO>0.00</MnO>
<MgO>9.10</MgO>
<NiO>0.0</NiO>
<CoO>0.0</CoO>
<CaO>12.45</CaO>
<Na2O>2.65</Na2O>
<K2O>0.03</K2O>
<P2O5>0.08</P2O5>
<H2O>0.20</H2O>
</initialize>
<calculationMode>equilibrate</calculationMode>
<title>alpha testing</title>
<constraints>
<setTP>
<initialT>1200</initialT>
<initialP>1000</initialP>
</setTP>
</constraints>
</MELTSinput>