Tagged Questions
The Zolera Soap Infrastructure. Python library for interacting with web services using SOAP.
9
votes
3answers
29k views
Public free web services for testing soap client
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 ...
8
votes
4answers
9k 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
1answer
650 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 ...
2
votes
3answers
987 views
python web-services: returning a fault from the server using ZSI
I'm interested in writing a python client for a web-service, and for testing purposes it would be very interesting also to have a simple stub server. I'm using python 2.3, and ZSI 2.0.
My problem is ...
2
votes
2answers
389 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 ...
1
vote
0answers
26 views
Can I write a SOAP server using python suds?
I started using suds for soap clients and will never touch ZSI again.
I know suds is meant for the client side, but I would love to use it to make also the server site, in order to get rid of ZSI.
...
1
vote
1answer
429 views
How to add wsse:Security, UsernameToken header to a SOAP request in ZSI, Python?
Is there a way to add the wsse:Security, UsernameToken header to the SOAP requests in ZSI, Python? I searched on the web, but couldn't find an answer.
1
vote
1answer
594 views
How to display outcoming and incoming SOAP message for ZSI.ServiceProxy in Python?
How to display a SOAP message generated by ZSI.ServiceProxy and a respond from a Web Service when a Web Service method is invoked?
1
vote
1answer
1k views
Web Service client in Python using ZSI - “Classless struct didn't get dictionary”
I am trying to write a sample client in Python using ZSI for a simple Web Service. The Web Service WSDL is following:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions ...
0
votes
1answer
114 views
Are there any working examples of Zolera SOAP Infrastructure (ZSI)?
i have looked at examples :
http://pywebsvcs.svn.sourceforge.net/viewvc/pywebsvcs/trunk/wstools/
http://pywebsvcs.sourceforge.net/cookbook.pdf
and googled, but could not find a single usable ...
0
votes
1answer
91 views
how to use wsdl2py generated complex types to send responses from web service in python
I'm using ZSI 2.1 and working from a wsdl file that specifies a 'postAppStatusResponse' message of type 'appStatusResponse', which is defined as:
<xsd:complexType name="appStatusResponse">
...
0
votes
0answers
47 views
wsdl2py python problem
I want to use wsdl2py for web service in python
but it not work.
I got this error
NameError: name 'wsdl2py' is not defined
what do you think?
I Install ZSI.
0
votes
2answers
189 views
Using Ladon in Python 2.6 on windows
I have been trying to create a web service out some python scripts, and haven't seemed to have had much luck. I am new to web services in general, but would really like to get this figured out. I'm ...
0
votes
0answers
108 views
ZSI Python Eclipse Import
I am trying to import ZSI onto eclipse to use in my program. I have placed the downloaded file into my workspace folder and ensured that my PYTHONPATHWAY points to this. I downloaded the 2.1 version ...
0
votes
1answer
156 views
Problem with ZSI
I biuld web service with ZSI from example
but after sending request I catch next XML
<SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" ...
0
votes
0answers
143 views
Django and ZSI as SOAP web-service server
Can somebody give example how integrate ZSI into Django project?
Links are wellcome
0
votes
1answer
319 views
Apache with mod_wsgi segfaults
I use apache2 mod_wsgi django to communicate with another soap to get information and return this information use soap!
The apache will return none,and the log with child pid * exit signal ...
0
votes
2answers
190 views
How to display outcoming and incoming SOAP message for ZSI.ServiceProxy in Python (version 2.1)?
Couple months ago I have asked the same question but in the context of older version of ZSI ...
0
votes
1answer
184 views
ZSI.generate.Wsdl2PythonError: unsupported local simpleType restriction
i have this simple type from an external webservice:
<xsd:element name="card_number" maxOccurs="1"
minOccurs="1">
<xsd:simpleType>
<xsd:restriction base="tns:PanType">
...