Tagged Questions
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 ...
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
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
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 ...
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
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 ...
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
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>
...
0
votes
2answers
657 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
1answer
289 views
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
<v1> .. actual parameters .. </v1>
How can I ...
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 ...
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 ...