如何使用soappy制作肥皂请求时添加标题

时间:2009-09-26 14:22:13

标签: python soap soappy

我有WSDL文件,使用我想制作肥皂请求,看起来就像这样 -

<?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>
    <AuthSoapHd xmlns="http://foobar.org/">
      <strUserName>string</strUserName>
      <strPassword>string</strPassword>
    </AuthSoapHd>
  </soap:Header>
  <soap:Body>
    <SearchQuotes xmlns="http://foobar.org/">
      <searchtxt>string</searchtxt>
    </SearchQuotes>
  </soap:Body>
</soap:Envelope>

为了解决这个问题,我做了这个

>> from SOAPpy import WSDL
 >> WSDLFILE = '/path/foo.wsdl'
 >> server = WSDL.Proxy(WSDLFILE)
 >> server.SearchQuotes('rel')

我收到此错误

faultType: <Fault soap:Server: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NullReferenceException: Object reference not set to an instance of an object.

我调试了它并得到了这个

*** Outgoing SOAP ******************************************************
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
>
<SOAP-ENV:Body>
<SearchQuotes SOAP-ENC:root="1">
<v1 xsi:type="xsd:string">rel</v1>
</SearchQuotes>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我们可以看到它不包含任何标题。我认为WSDL文件有一些bug。 现在,任何人都可以建议我如何为此外发肥皂请求添加标题。

任何形式的帮助将不胜感激。提前致谢

1 个答案:

答案 0 :(得分:0)

未经过测试,但我相信您可以使用方法the docs建议添加soap标头,即制作和准备SOAPpy.Header个实例,然后使用server = server._hd (hd)来获取代理有了它(虽然在你的情况下似乎确实是一种破解WSDL的解决方法,正如你所说的那样 - 修改WSDL可能会更好吗?)。