2

我正在向 SOAP API 发送请求,不幸的是,我对 SOAP 的了解有限。以下两个请求都返回响应,但响应不同。不工作的例子只返回一个 send_fax_response。工作返回一个 send_fax_response 和一个 send_fax_result。关于为什么的任何想法?会不会是订单?

不工作

SOAP request: https://faxregistration.com/SfaxWS/SfaxAPI.asmx
SOAPAction: "http://tempuri.org/sendFax", Content-Type: text/xml;charset=UTF-8, User-Agent: sfax-api gem 0.0.1
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:wsdl="http://tempuri.org" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ins0="http://tempuri.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Body>
    <ins0:sendFax>
      <ins0:xDoc>
        <FaxRequest>
          <DocMerge>false</DocMerge>
          <RecipientFax>555.123.4567</RecipientFax>
          <Password>test</Password>
          <UserId>test</UserId>
          <image>PGh0bWw+PGJvZHk+VGVzdCBGYXg8L2JvZHk+PC9odG1sPg==</image>
          <DocType>html</DocType>
          <RecipientName>test</RecipientName>
        </FaxRequest>
      </ins0:xDoc>
    </ins0:sendFax>
  </env:Body>
</env:Envelope>

在职的

SOAP request: https://faxregistration.com/SfaxWS/SfaxAPI.asmx
SOAPAction: "http://tempuri.org/sendFax", Content-Type: text/xml;charset=UTF-8, User-Agent: sfax-api gem 0.0.1
<?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:Body>
    <sendFax xmlns="http://tempuri.org/">
      <xDoc>
        <FaxRequest>
          <UserId>test</UserId>
          <Password>test</Password>
          <RecipientName>test</RecipientName>
          <RecipientFax>555.123.4567</RecipientFax>
          <DocType>html</DocType>
          <image>PGh0bWw+PGJvZHk+VGVzdCBGYXg8L2JvZHk+PC9odG1sPg==</image>
          <DocMerge>false</DocMerge>
        </FaxRequest>
      </xDoc>
    </sendFax>
  </soap:Body>
</soap:Envelope>
4

3 回答 3

1

我注意到的第一件事是您的请求的第一行在env:Envelope“不工作”示例和soap:Envelope“工作”示例中。

除此之外,该标签还缺少一些属性。它们可能很重要,但我认为这是导致损坏的外部元素的命名。

于 2011-08-25T00:29:35.460 回答
1

我认为您的肥皂服务器期望正文,即在元素中定义 http://tempuri.org 命名<sendFax>空间如果是这样,在 not_working 肥皂请求中更改正文也可能有效。

<ins0:sendFax ins0:"http://tempuri.org/">
  <ins0:xDoc>
    <FaxRequest>
      <DocMerge>false</DocMerge>
      <RecipientFax>555.123.4567</RecipientFax>
      <Password>test</Password>
      <UserId>test</UserId>
      <image>PGh0bWw+PGJvZHk+VGVzdCBGYXg8L2JvZHk+PC9odG1sPg==</image>
      <DocType>html</DocType>
      <RecipientName>test</RecipientName>
    </FaxRequest>
  </ins0:xDoc>
</ins0:sendFax>
于 2011-08-25T01:42:39.087 回答
1

我正在使用 Savon for Rails。我的 SOAP 请求总是失败,我注意到工作示例有soap:Envelope而我生成的请求有env:Envelope。如何将不工作的SOAP 请求变成工作的SOAP 请求?请帮忙 :)

于 2011-08-26T09:47:23.583 回答