Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use a web service with Python and SOAPpy as a client. Some of the method paramters in this web service's WSDL are asking for an "ObjectNameType" type. Here is my code so far:

import SOAPpy
from SOAPpy import WSDL
WSDLFile = "https://servername:8443/perfmonservice/services/PerfmonPort?wsdl"
proxy      = WSDL.Proxy(WSDLFile)
proxy.soapproxy.config.dumpSOAPOut = 1
proxy.soapproxy.config.dumpSOAPIn = 1
attr = SOAPpy.structType()
attr._addItem('ObjectNameType', 'Process')
print proxy.PerfmonCollectCounterData('172.20.1.40', attr)

soap outgoing message is as like this:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">

<SOAP-ENV:Body>
<ns1:PerfmonCollectCounterData xmlns:ns1="http://schemas.cisco.com/ast/soap/" SOAP-  ENC:root="1">
<v1 xsi:type="xsd:string">172.20.1.40</v1>
<xsd:v2>
<ObjectNameType xsi:type="xsd:string">Process</ObjectNameType>
</xsd:v2>
</ns1:PerfmonCollectCounterData>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

The web service does not like this at all and returns the following error:

  "SOAPpy.Types.faultType: <Fault soapenv:Server.userException: org.xml.sax.SAXException:       SimpleDeserializer encountered a child element, which is NOT expected, in something it was   trying to deserialize.: <SOAPpy.Types.structType detail at 29170504>: "

i don't know what i have to do. please help me, i am new to python. Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.