使用jQuery Ajax发送soap信封的自定义标头

时间:2012-06-07 14:24:08

标签: jquery .net ajax asmx soapheader

我正在尝试使用jQuery Ajax调用asmx服务。

POST /YderWS.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://scandihealth.com/iwebservices/HentKommuner"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <AuthHeader xmlns="http://scandihealth.com/iwebservices/">
      <PartnerID>string</PartnerID>
      <SubPartnerID>string</SubPartnerID>
      <SubPartnerType>string</SubPartnerType>
    </AuthHeader>
  </soap:Header>
  <soap:Body>
    <HentKommuner xmlns="http://scandihealth.com/iwebservices/" />
  </soap:Body>
</soap:Envelope>

以上是我需要发送给服务的SOAP 1.1请求。我正在使用以下调用来设置自定义soap标头。但我的请求失败了。任何人都可以为我调试下面的代码并让我知道我需要做什么吗?

var authHeader = "<PartnerID>SCTEST001</PartnerID> <SubPartnerID>001</SubPartnerID> <SubPartnerType>S</SubPartnerType>";
//Call the page method
$.ajax({
  type: "GET",
  url: servicename + "/" + functionName,
  beforeSend: function (xhr) {
    xhr.setRequestHeader('AuthHeader', authHeader);
  },
  success: successFn,
  error: errorFn
});

编辑 * 如果需要其他信息来回答此问题,请与我们联系。 *

2 个答案:

答案 0 :(得分:3)

jQuery.ajax()为任何类型的“Web服务”发出通用HTTP请求,而不仅仅是.NET Web服务。您将要添加SOAPAction请求标头并将整个SOAP信封作为POST数据传递:

$.ajax({
    type: 'POST',
    url: servicename + "/" + functionName,
    contentType: 'text/xml; charset=utf-8',
    headers: {
        SOAPAction: 'http://scandihealth.com/iwebservices/HentKommuner'
    },
    data: '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><AuthHeader xmlns="http://scandihealth.com/iwebservices/"><PartnerID>string</PartnerID><SubPartnerID>string</SubPartnerID><SubPartnerType>string</SubPartnerType></AuthHeader></soap:Header><soap:Body><HentKommuner xmlns="http://scandihealth.com/iwebservices/" /></soap:Body></soap:Envelope>',
    success: successFn,
    error: errorFn
});

如果你正在使用jQuery&lt; 1.5,您需要使用beforeSend来设置SOAPAction请求标头。

您可以在http://api.jquery.com/jQuery.ajax/找到jQuery.ajax()的文档。

答案 1 :(得分:0)

好像你错过了添加这些:

contentType: 'text/xml; charset=utf-8',
dataType: 'xml'

添加这两行之后,我可以使用 Selenium 进行调试。