我尝试使用 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))
有没有更好的办法?
谢谢