1

我尝试使用 python-zeep 包来消费一些肥皂服务(ID3 Global

这似乎是可行的,感谢最近添加的功能(WSSE 身份验证和使用多个绑定的可能性)

现在我尝试循环中的每个绑定以找到正确的绑定,例如:

url = '{http://www.id3global.com/ID3gWS/2013/04}'
bindings = [key.replace(url, '') for key in client.wsdl.bindings]
for binding in bindings:
    try:
        service = client.bind('ID3global', binding)
        result = service.AuthenticateSP(
            ProfileIDVersion=profile_id_version,
            InputData=input_data
        )
        print("\n\nAuthenticateSP's result: {}\n\n".format(result))
    except Exception as exception:
        print('Exception: {}\n'.format(exception))

有没有更好的办法?

谢谢

4

1 回答 1

2

我不确定您为什么要遍历所有端口以找到所需的端口。您可以检查 wsdl 或使用python -mzeep <wsdl>来查找哪个操作属于哪个端口

于 2016-05-09T18:55:09.997 回答