我正在尝试使用stamps.com WSDL服务 - 这是链接:http://34.212.2.126:8000/api/TEST/
我收到了这条消息:
服务器引发的错误:'由于XML架构验证失败,无效的SOAP消息。 名称空间“http://stamps.com/xml/namespace/2017/04/swsim/swsimv62”中的元素“凭据”包含不完整的内容。 期望的可能元素列表:名称空间“http://stamps.com/xml/namespace/2017/04/swsim/swsimv62”中的“IntegrationID”。
这是我正在使用的python代码:
client = Client(stamp_endPoint)
client.set_options(port='SwsimV62Soap')
response = client.service.AuthenticateUser()
return HttpResponse(response)`
这是WSDL文件: https://drive.google.com/file/d/0B6Q9btduOt7AeVQtQk1mSkZ3RkU/view
我有登录凭据(IntegrationID,用户名,密码),但我不知道如何插入它们。