1
vote
2answers
56 views
Problem with python soap library suds. Wsdl was not understood
The code below throw a SAXParseException: "mismatched tag":
from suds.client import Client <br>
url = 'http://www.didww.com/api/?wsdl'
client = Client(url, cache=None)
print client
Is …
0
votes
1answer
28 views
Changing web service url in SUDS library
Using SUDS SOAP client how do I specify web service URL. I can see clearly that WSDL path is specified in Client constructor but what if I wan't to change web service url?
1
vote
2answers
60 views
suds + jira = SAXException
I'm using Python 2.6 and suds 0.3.7 to interact with Jira 4.0.
I connect to the jira server and and get information just fine. I.e., I can get all the details about any issue I want and that's …
0
votes
2answers
234 views
Writing python client for SOAP with suds
Dear python programmers,
I want to convert a perl SOAP client into a python SOAP client.
The perl client is initialized like
$url = 'https://host:port/cgi-devel/Service.cgi';
$uri = …
1
vote
1answer
338 views
How to create arrayType for WSDL in Python (using suds)?
Environment:
Python v2.6.2
suds v0.3.7
The WSDL (server) I work with, have the following schema sub-sections (I tried to write it clearly using plain text) -
[ sub-section #1 ]
searchRequest: …
0
votes
1answer
91 views
Sending cookies in a SOAP request using Suds
I'm trying to access a SOAP API using Suds. The SOAP API documentation states that I have to provide three cookies with some login data. How can I accomplish this?
0
votes
1answer
390 views
Python/Suds: Type not found: ‘xs:complexType’
I have the following simple python test script that uses Suds to call a SOAP web service (the service is written in ASP.net):
from suds.client import Client
url = 'http://someURL.asmx?WSDL'
client …
0
votes
0answers
33 views
Proxying imported schema but not SOAP requests with suds
I'm writing a SOAP client to talk to servers on our local network but our provider's WSDL references but doesn't import the SOAP encoding schema. We can fix this up with suds' ImportDoctor but doing …
0
votes
0answers
227 views
How to import XSD schema with Python Suds (version 0.3.6) SOAP library : TypeNotFound exception ?
I'm trying to use SABRE travel web services with Python Suds, but one XSD seems not well-formed (maybe namespace is missing in this schema).
from suds.client import Client
wsdl = …
1
vote
2answers
208 views
Python SOAP document handling
I've been trying to use suds for Python to call a SOAP WSDL. I just need to call the service programmatically and write the output XML document. However suds automatically parses this data into it's …
0
votes
1answer
166 views
SharePoint via SOAP using Python
I have been following the solution noted here - as this is exactly what I need to achieve;
http://stackoverflow.com/questions/218987/how-can-i-use-sharepoint-via-soap-from-python
however when I run …
0
votes
1answer
110 views
How do I get a value node moved up to be an attribute of its parent node?
What do I need to change so the Name node under FieldRef is an attribute of FieldRef, and not a child node?
Suds currently generates the following soap:
<ns0:query>
<ns0:Where>
…
1
vote
1answer
209 views
SUDS - programmatic access to methods and types
I'm investigating SUDS as a SOAP client for python. I want to inspect the methods available from a specified service, and the types required by a specified method.
The aim is to generate a user …
2
votes
3answers
913 views
how can i use sharepoint (via soap?) from python ?
I want to use Sharepoint with python (C-Python)
Has anyone tried this before ?
