SOAPy is a SOAP/XML Schema Library for Python.
0
votes
0answers
21 views
SOAPpy: Missing Namespace Prefix
I wrote a webservice using SOAPpy. Everything is working fine, except the outgoing SOAP message does not contain the namespace (i.e. 'xmlns'). Compare sections in Incoming SOAP and Outgoing SOAP.
...
3
votes
1answer
60 views
How to respond to the user in due time and gracefully handle the badly behaving third party servers?
I have the following scenario:
I have a web service that upon a single user request aggregates data from some third party servers. The requests to the third parties can be SOAP or plain urllib2 ...
0
votes
2answers
656 views
Adding Cookie to SOAPpy Request
I'm trying to send a SOAP request using SOAPpy as the client. I've found some documentation stating how to add a cookie by extending SOAPpy.HTTPTransport, but I can't seem to get it to work.
I tried ...
0
votes
0answers
32 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
102 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/"
...
31
votes
3answers
83k views
Public free web services for testing soap client [closed]
Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)?
So far, it appears to me that Google ...
0
votes
0answers
20 views
Registering Functions that belong to Classes in SOAPpy (Python)
I am developing a server/client application using SOAPpy. I currently have some code similar to this on my server:
class auth:
def login(self, username, password):
login code
def ...
0
votes
1answer
86 views
SOAPpy - create a Jira issue and define a component?
I can't figure how to create a jira issue and define its component with SOAPpy:
client = so.WSDL.Proxy(cfg_wsld)
auth_token = client.login(cfg_username, cfg_password)
issue_params = dict()
...
0
votes
0answers
52 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
57 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
270 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
...
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 ...
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
858 views
Installing SOAP for Python
I am new to Python, trying to learn it by doing a tutorial based on "Dive into Python" book.
I am already in chapter about SOAP and I encountered some problems, when I tried to install all required ...
3
votes
3answers
1k views
Has anyone combined soap.py or suds with python-ntlm?
I'd like to replace an app's current (badly busted and crufty) cURL-based (cURL command-line based!) SOAP client with suds or soap.py. Trouble is, we have to contact an MS CRM service, and therefore ...
4
votes
1answer
413 views
How can I pass a SSL certificate to a SOAP server using SOAPpy / Python
I am building a script to access a HTTPS/TLS TCP site that requires a X.509 certifcate that I have as a .pfx file.
I am using SOAPpy 0.12.5 and Python 2.7 and have started off with code as below,
...
3
votes
1answer
89 views
Enable Verbose Logging in SOAPpy
How does one enable some sort of verbose output and/or logging in a SOAPpy client? This is so that I can diagnose some rather odd issues that cause the web service call to block execution without any ...
3
votes
1answer
161 views
Soap get arguments with wrong order in twisted
Now i use twisted.soap to build my soap server, I'd like to build a function with plural arguments like this:
def soap_searchFlight(self,name=None,startpoint=None,destination=None):
d=Deferred()
...
0
votes
2answers
412 views
Can anyone tell me why I'm getting this error in SOAPpy?
server = SOAPpy.WSDL.Proxy(wdf)
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
server = SOAPpy.WSDL.Proxy(wdf)
File ...
1
vote
1answer
360 views
i am getting error “no schemaLocation attribute in import” when using Python client accessing JIRA via SOAP
here is the sample code :
#!/usr/bin/env python
# Sample Python client accessing JIRA via SOAP. By default, accesses
# http://jira.atlassian.com with a public account. Methods requiring
# more than ...
3
votes
1answer
833 views
Complex Type issue with SOAPpy
I'm trying to access a function defined in my WSDL from HP Server Automation, I'm able to get servers/etc, but not able to pull anything that takes a server reference specifically via SOAPpy.
import ...
0
votes
1answer
226 views
SOAPpy returning an XML string. How do I get the library to parse the xml for me?
I am using SOAPpy, and Dive Into Python http://diveintopython3.ep.io/http-web-services.html says it should be returning a dictionary.
I am making a simple request, that returns an xml response that ...
2
votes
1answer
543 views
SOAPpy - how to pass a security Header?
Im currently developing a python webservice for an application which uses Axis2 WS-Security
the simplified relevant code is
from SOAPpy import SOAPProxy
from SOAPpy import WSDL
file = ...
1
vote
1answer
922 views
Problem with namespaces in SOAPpy
I'm having an issue correctly interfacing with a SOAP API running on Axis2:
What happens is I should call the login method with two arguments (loginName and password) and it returns an authentication ...
0
votes
1answer
105 views
SOAP methods with point on its name description
Ok, i've a problem consuming a soap client with python with a soap server that gives method's name with points on it like 'MyClass.mymethod(xs:string)'.
This is cause by a PHP lib called nusoap that ...
1
vote
1answer
369 views
How do I call IBM IMM methods using SOAPpy?
I'm trying to use SOAPpy to call various SOAP methods of an IBM IMM (Integrated Management Module). Unfortunately I'm rather new to SOAP and can't figure it out at all.
I don't have any kind of WSDL, ...
0
votes
2answers
3k views
Can't call a webservice method using SOAPpy
I am trying to call a webservice using SOAPpy:
from SOAPpy import SOAPProxy
url = 'http://www.webservicex.net/WeatherForecast.asmx'
server = SOAPProxy(url);
print ...
0
votes
1answer
625 views
SOAPpy installation unable to find fpconst eventhough its installed
I am a complete novice to the python world and have recently been asked to migrate a legacy application that runs on Python 2.4.15, SOAPpy Module & fpconst.
While installing SOAPpy 0.12.4 on the ...
0
votes
2answers
668 views
Turn SSLchecking off in M2Crypto in Python
Is there a way to turn off SSL checking so that WrongHost Exceptions are not generated when using SOAPpy in python.
2
votes
1answer
534 views
How do I set XML attributes in SOAPpy with python?
I am forming a SOAPpy request but I can't figure out how to set the attributes in a tag. Here is my code:
url = wsdlfile = 'https://stats2.overture.com/ExternalSOAP/statsPMCAPI_1_0.wsdl'
n = ...
1
vote
1answer
3k views
Soap call in Python
I tried to call a soap service. My call is success but its returns empty value.Below i attached my soap request and response schema. Its takes 1d array as input and return that array.
Request ...
0
votes
1answer
153 views
Is it possible to run webservice based on SOAPpy with mod_wsgi under Apache?
Is it possible to run webservice based on SOAPpy with mod_wsgi under Apache?
if yes can you post link to sample(example)?
1
vote
2answers
760 views
what is the type of the variable
I am a very newbie in Python I have the folllowing code :
from SOAPpy import WSDL
fichier_wsdl = 'http://geocoder.us/dist/eg/clients/GeoCoder.wsdl'
wsdl = WSDL.Proxy(fichier_wsdl)
callInfo = ...
0
votes
1answer
277 views
wsgi + Django: SOAPpy(pyXML) modules Import Error
In the command line the code works perfect,
but throw import error when use django + mod_python or wsgi +apache
The message is:
ImportError at /test2/
DLL load failed: The specified module could ...
1
vote
1answer
555 views
Invoke BPEL from a Webservice in OpenESB
Right now i'm developing a composite application using Open ESB. I got my
application tested through a test case by sending a request SOAP message,
and it works great.
The problem is, i want my ...
0
votes
1answer
49 views
Where do you get Python SOAPPy forwindows?
I can't seem to install it, computer doesn't know what to open it with, is there something wrong? Do you know a website where I can install it?
0
votes
1answer
513 views
SOAPpy, C# and object passing
I'm trying to write a SOAPpy client to my C# WebService. It is arriving as null :(
How can I get any debug from the C# SOAP parser that WebService uses?
This is what Python sends:
<?xml ...
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 = ...
2
votes
1answer
279 views
0
votes
2answers
632 views
When using soappy SOAPServer, how do I read the request's headers?
I've got a Python webservice using SOAPpy. The webservice server is structured as shown below:
class myClass:
def hello():
return 'world'
if __name__ == "__main__":
server = SOAPServer( ( ...
0
votes
1answer
409 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
1answer
2k views
Add Header section to SOAP request using SOAPpy
I need to construct this SOAP query using python SOAPpy module:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
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" ...
0
votes
1answer
270 views
Compressed xml on soappy
I'm developing an application that uses webservices in python, both sides (server and client) are developed in Python and uses SOAPpy for the webservices, but, you know, the xml is too verbose, I want ...
2
votes
2answers
1k views
SOAPpy installation error
Hi i was trying to install SOAPpy module on my mac for python......
i installed xml and fpconst and tried installing this SOAPpy module, but i was getting the error... as below:
venj:SOAPpy-0.12.0 ...
0
votes
1answer
648 views
python soappy add header
I have the following PHP example code:
$client = new SoapClient("http://example.com/example.wsdl");
$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
...
0
votes
1answer
197 views
Is SOAPpy the same thing as SOAPy?
I would normally read the documentation to figure that out, but the links from both websites are on sourceforge and both are 404ing.
0
votes
1answer
1k views
How to add header while making soap request using soappy
I have WSDL file, using that i wanted to make soap request which will look exactly like this --
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope ...
2
votes
1answer
1k views
Python SOAP clients will not work with this WSDL
Thus far I've tried to access this WSDL:
https://login.azoogleads.com/affiliate/tool/soap%5Fapi
from the two common Python SOAP clients that I'm aware of: SOAPpy and ZSI.client.Binding. SOAPpy ...
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 ...

