SOAPy is a SOAP/XML Schema Library for Python.
Questions tagged [soappy]
75 questions
3
votes
1 answer
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 requests with XML data, and each one is done in a…

Augusto Hack
- 2,032
- 18
- 35
3
votes
2 answers
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 venkata$ python setup.py build
Traceback (most…
sudhakar
2
votes
1 answer
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 = 'path/to/my/file?wsdl'
server =…

Jonh
- 21
- 3
2
votes
2 answers
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 composite application to be able to be used like
a…

user531148
- 21
- 3
2
votes
0 answers
SOAPpy encoding error xml.parsers.expat.ExpatError
I'm using SOPApy to make a client for SOAP. Following code rises error.
import SOAPpy
wsdlFile = 'https://10.10.10.10/services/fwif?wsdl'
proxy = SOAPpy.WSDL.Proxy(wsdlFile)
Traceback (most recent call last):
File "run.py", line 28, in
…

Tobby Dinn
- 21
- 1
2
votes
1 answer
Reading a SOAP header to a SOAPpy response?
How can I read s SOAP header from a SOAPpy response?

shen0956
- 43
- 1
- 5
2
votes
0 answers
Connect to Pythons SOAPpy server with Perls SOAP::Lite
I'm completely blocked on this one and I require your assistance.
I developed a SOAP server using Python and Soappy library. It works pretty well if I use another Python application as the client, however ones I try to connect with Perls SOAP::Lite…

Marek
- 1,413
- 2
- 20
- 36
2
votes
1 answer
How to get a SOAP body by using SOAPpy?
I try to call a method using a SOAP request by using SOAPpy on Python 2.7.5 The method is called GetCursOnDate and returns exchange rates. It takes a datetime parameter.
I'm using the following code:
from SOAPpy import WSDL
from SOAPpy…

Leo
- 1,787
- 5
- 21
- 43
2
votes
2 answers
Adding Cookie to ZSI Posts
I've added cookie support to SOAPpy by overriding HTTPTransport. I need functionality beyond that of SOAPpy, so I was planning on moving to ZSI, but I can't figure out how to put the Cookies on the ZSI posts made to the service. Without these…

danivovich
- 4,197
- 4
- 30
- 31
2
votes
1 answer
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_api
from the two common Python SOAP clients that I'm aware of: SOAPpy and ZSI.client.Binding. SOAPpy raises an exception in PyXML…

TH.
- 33
- 1
- 5
1
vote
1 answer
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 basic user-level access are commented out. Change…

kamal
- 9,637
- 30
- 101
- 168
1
vote
1 answer
How to disable v1 tag in a Web service request with SoapPy?
I'm trying to use SOAPpy to write a web service client. However after defining WSDL object, a call to a web-service method is wrapped in a
.. actual parameters ..
How can I disable this v1 tag?
lolllipop
1
vote
4 answers
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 =…

brabster
- 42,504
- 27
- 146
- 186
1
vote
2 answers
How to access Yahoo Enterprise Web Services using Python SOAPpy?
I have a PHP script which works and i need to write the same in Python but SOAPpy generates a slightly different request and i'm not sure how to fix it so the server likes it.
The request generated by php script looks like this:

Andrey
- 113
- 1
- 1
- 5
1
vote
1 answer
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, so I've had to resort to watching to see what my…

MikeyB
- 3,288
- 1
- 27
- 38