python - Invalid SOAP message due to XML Schema validation failure. > The element 'Credentials' in namespace -
i'm trying use stamps.com wsdl service - here link: http://34.212.2.126:8000/api/test/
i'm getting message:
server raised fault: 'invalid soap message due xml schema validation failure. element 'credentials' in namespace 'http://stamps.com/xml/namespace/2017/04/swsim/swsimv62' has incomplete content. list of possible elements expected: 'integrationid' in namespace 'http://stamps.com/xml/namespace/2017/04/swsim/swsimv62'.'
this python code i'm using:
    client = client(stamp_endpoint)     client.set_options(port='swsimv62soap')      response = client.service.authenticateuser()     return httpresponse(response)` here wsdl file: https://drive.google.com/file/d/0b6q9btduot7aevqtqk1mskz3rku/view
i have login credentials (integrationid,username,password) don't know how insert them.
 
 
Comments
Post a Comment