Questions tagged [zsi]

The Zolera Soap Infrastructure. Python library for interacting with web services using SOAP.

The Zolera Soap Infrastructure

Python library for interacting with web services using SOAP.

Links

Home Page
Documentation
SVN Tree

31 questions
96
votes
1 answer

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 Web API may be the only option. Otherwise, how can…
bhadra
  • 12,601
  • 9
  • 52
  • 47
14
votes
3 answers

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 MySQL database, that simply returns a BIGINT…
m0j0
  • 2,642
  • 4
  • 24
  • 32
11
votes
1 answer

What content type should be in http header of soap 1.2 message?

I have a problem where my xml-da client that is using zsi 2.2.2 library generating messages that look like soap 1.2 messages because I can see this line. xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope" But I also can see text/xml as a…
user1685095
  • 5,042
  • 7
  • 39
  • 85
8
votes
1 answer

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 example.
kamal
  • 9,015
  • 28
  • 92
  • 148
8
votes
1 answer

what does double star followed by variable name mean in python?

Possible Duplicate: What does ** (double star) and * (star) do for python parameters? I am reading some code that been generated by ZSI for python. There is a line like this def verifyVehicle(self, request, **kw): .... I want to know what…
ACZINT
  • 91
  • 6
5
votes
2 answers

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. How could I use suds to parse soap requests instead…
Unpaid Oracles
  • 1,747
  • 2
  • 12
  • 8
5
votes
1 answer

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.
Srikanth
  • 11,148
  • 20
  • 64
  • 87
2
votes
2 answers

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 that I do not manage to return an exception from…
Paolo Tedesco
  • 49,782
  • 29
  • 130
  • 181
2
votes
1 answer

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 Segmentation fault (11)! Who can help me?my English is…
shen0956
  • 43
  • 1
  • 5
2
votes
1 answer

What does this ZSI error mean, and how do I debug it?

I have a set of Python classes that I have generated for a SOAP service from a WSDL with ZSI. I have another Python module that calls the SOAP service using these generated classes. Unfortunately, the code keeps throwing an EvaluateException with…
mipadi
  • 359,228
  • 81
  • 502
  • 469
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,157
  • 3
  • 28
  • 30
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
2 answers

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:
SteveT
  • 11
  • 2
1
vote
1 answer

Problem with ZSI

I biuld web service with ZSI from example but after sending request I catch next XML
Andrey Koltsov
  • 1,886
  • 6
  • 23
  • 43
1
vote
0 answers

Python ZSI Client error

I am a newbie with web services and I really need your help. I have an existing WSDL, and based on my research, the easiest to use is ZSI for python. It has a wsdl2py and wsdl2dispatch scripts which generates the code based from the existing WSDL.…
matdg
  • 33
  • 4
1
2 3