i am using SOAPpy-0.12.0 , Python and wsdl.
For accessing the perfmon webservice provided by Cisco UCM. I want to fetch the perfmon counter data. For this i have a method PerfmonCollectCounterData(), i need to pass two parameters to this method, First parameter is HostName(string type) and sencond parameter is ObjectName(ObjectNameType).
i have a python statement:
proxy.PerfmonCollectCounterData('172.20.1.40', 'Processor')
where 'processor' is Perfmon Object.But it takes it as string type. This is reason for getting following SAX Bad Type exception.
*** Outgoing SOAP *** <?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> <v2 xsi:type="xsd:string">Process</v2> </ns1:PerfmonCollectCounterData> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
Traceback (most recent call last): File "check_rtmt1.py", line 49, in print proxy.PerfmonCollectCounterData('172.20.1.40','Process') File "/usr/local/lib/python2.6/dist-packages/SOAPpy/Client.py", line 470, in call return self.__r_call(*args, **kw) File "/usr/local/lib/python2.6/dist-packages/SOAPpy/Client.py", line 492, in __r_call self._hd, self._ma) File "/usr/local/lib/python2.6/dist-packages/SOAPpy/Client.py", line 406, in __call raise p
SOAPpy.Types.faultType: class com.cisco.ccm.serviceability.soap.perfport.ObjectNameType): : {'stackTrace': 'org.xml.sax.SAXException: Bad types (class java.lang.String -> class com.cisco.ccm.serviceability.soap.perfport.ObjectNameType)\n\tat org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:286)\n\tat org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)\n\tat org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)\n\tat org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)\n\tat org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)\n\tat org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)\n\tat org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:81)\n\tat org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)\n\tat org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)\n\tat org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)\n\tat org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)\n\tat org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)\n\tat org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)\n\tat org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)\n\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:637)\n\tat org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)\n\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:717)\n\tat sun.reflect.GeneratedMethodAccessor276.invoke(Unknown Source)\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)\n\tat java.lang.reflect.Method.invoke(Method.java:597)\n\tat org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)\n\tat java.security.AccessController.doPrivileged(Native Method)\n\tat javax.security.auth.Subject.doAsPrivileged(Subject.java:517)\n\tat org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)\n\tat org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)\n\tat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)\n\tat org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)\n\tat org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)\n\tat java.security.AccessController.doPrivileged(Native Method)\n\tat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)\n\tat org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)\n\tat org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)\n\tat org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:563)\n\tat org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)\n\tat org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)\n\tat org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:555)\n\tat org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:394)\n\tat org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)\n\tat org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)\n\tat org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)\n\tat org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)\n\tat org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)\n\tat java.lang.Thread.run(Thread.java:662)\n', 'hostname': 'AQ-CMPUB'}>
Editional information: my actual code is :
import SOAPpy
from SOAPpy import HTTPTransport
from SOAPpy import WSDL
myHTTPTransport.setAuthentication("username","password")
WSDLFile = "https://hostname:8443/perfmonservice/services/PerfmonPort?wsdl"
proxy = WSDL.Proxy(WSDLFile, transport=myHTTPTransport)
proxy.PerfmonCollectCounterData('hostname', 'Processor')
i know i need to pass 2nd argument as object type to PerfmonCollectCounterData() method but i don't know how to convert 'Processor' string type to ObjectType in python.
any help.. Thanks in Advance.