Tagged Questions
0
votes
0answers
30 views
Need help accessing save.tv SOAP interface from python using soappy
I'm trying to access the inofficial SOAP interface of www.save.tv through python. The following provides me the list of methods/parameters:
from SOAPpy import WSDL
url = ...
0
votes
1answer
101 views
When I consume wsdl using python, I get an xml.parsers.expat.ExpatError
I followed these instructions to make a local wsdl.
Some lines in my local WSDL:
< wsdl:definitions
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
...
0
votes
0answers
51 views
Unable to access some of methods in cisco UCM's perfmonservice using SOAPpy?
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 ...
0
votes
0answers
55 views
Bad Types SAX Exception - when i am trying to access perfmonservice?
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 ...
0
votes
1answer
269 views
Validation of input data in SOAPpy (WSDL)
My client.py looks like this:
from SOAPpy import WSDL
wsdlFile = 'D:/Downloads/w1.1.wsdl'
server = WSDL.Proxy(wsdlFile)
server.soapproxy.config.dumpSOAPOut = 1
...
1
vote
1answer
138 views
python WSDL.Proxy behind a http proxy
I have a simple code that works when I'm not behind any proxy but doesn't work when I am behind a proxy. So is there any way I can specify that the connection has to be made through the http_proxy in ...
0
votes
1answer
786 views
How do I pass a list parameter as multiple link-named elements instead of as an array in SOAPpy?
I am trying to pass multiple instances of an element to a web servile that has the following wsdl
<complexType name="OAMCommand">
<sequence>
<element name="m-strName" ...
7
votes
5answers
1k views
Why the trailing slash in the web service is so important?
I was testing a web service in PHP and Python. The address of the web service was, let's say, http://my.domain.com/my/webservice. When I tested the web service in PHP using that URL everything worked ...
0
votes
1answer
408 views
Why Python omits attribute in the SOAP message?
I have a web service that returns following type:
<xsd:complexType name="TaggerResponse">
<xsd:sequence>
<xsd:element name="msg" type="xsd:string"></xsd:element>
...
1
vote
4answers
3k views
What's wrong with my Python SOAPpy webservice call?
I am playing around trying to call a simple SOAP webservice using the following code in the Python interpreter:
from SOAPpy import WSDL
wsdl = "http://www.webservicex.net/whois.asmx?wsdl"
proxy = ...
10
votes
3answers
13k views
Generating a WSDL using Python and SOAPpy
First of all, I will admit I am a novice to web services, although I'm familiar with HTML and basic web stuff. I created a quick-and-dirty web service using Python that calls a stored procedure in a ...