SOAPy is a SOAP/XML Schema Library for Python.
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 = ...
0
votes
2answers
517 views
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 ...
0
votes
1answer
1k views
Adding a SOAP header to a SOAPpy request
Does anyone know how to do this? I need to add a header of the form:
value1
value2
31
votes
3answers
89k 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 ...
10
votes
3answers
14k 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 ...
2
votes
2answers
461 views
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 ...