python soappy添加标题

时间:2009-12-06 23:13:09

标签: python soap header soappy

我有以下PHP示例代码:

$client = new SoapClient("http://example.com/example.wsdl");

$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
$client->__setSoapHeaders($h);

$s = $client->__soapCall('Op', $data);

我的问题:SoapHeader()和__setSoapHeaders()部分的SOAPpy等价物是什么?

相关问题

1 个答案:

答案 0 :(得分:1)

以下是使用suds库(SOAPpy的替代品)的示例。它假定未在wsdl中定义自定义标头。

from suds.client      import Client
from suds.sax.element import Element

client = Client("http://example.com/example.wsdl")

# <tns:h xmlns:tns="http://example2.com/example2/">v</tns:h>
tns = ("tns", "http://example2.com/example2/")
h = Element('h', ns=tns).setText('v')
client.set_options(soapheaders=h) 
#
s = client.service.Op(data)