Tagged Questions

Suds is a SOAP services library for Python.

learn more… | top users | synonyms

15
votes
2answers
641 views

XML differences between WCF and Python SUDS for inheritance?

This is my first post, so apologies if I don't include all the right information! I have a question regarding the different ways inheritance are represented between WCF and SUDS (Python). I have a ...
7
votes
2answers
3k 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 = ...
7
votes
1answer
4k 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 ...
6
votes
1answer
455 views

What's the best SOAP library for Python 3.x?

I searched the web for an existing and supported SOAP library for Python 3. (both client and server) Here the list of libraries I've found: Python 2: SOAPy: discontinued Python 2 project ZSI: ...
6
votes
2answers
319 views

Python SOAP Client - use SUDS or something else?

I am currently looking into implementing a client which will use an existing extensive SOAP management API. I looked into different SOAP implementations like pysimplesoap and SUDS. While the first ...
6
votes
1answer
995 views

Python: How can I use Twisted as the transport for SUDS?

I have a project that is based on Twisted used to communicate with network devices and I am adding support for a new vendor (Citrix NetScaler) whose API is SOAP. Unfortunately the support for SOAP in ...
5
votes
1answer
124 views

Python SUDS return type other than XML

I am working with a somewhat non-standard SOAP webservice. Most of the calls to the webservice return the standard SOAP XML as you would expect, but one call in particular returns a JSON string ...
5
votes
2answers
3k views

Can you help me solve this SUDS/SOAP issue?

So I'm trying to access this api https://www.clarityaccounting.com/api-docs/ using SUDS. Here is the code that should work: from suds.client import Client client = ...
5
votes
2answers
8k views

Python soap using soaplib (server) and suds (client)

This question is related to: http://stackoverflow.com/questions/1751027/python-soap-server-client In the case of soap with python, there are recommendation to use soaplib ...
5
votes
4answers
3k views

how can i use sharepoint (via soap?) from python?

I want to use Sharepoint with python (C-Python) Has anyone tried this before ?
4
votes
1answer
743 views

Soap Client using Suds

Soap call in Python Hi above is my previous question regarding soap. In there i am passing a 1D array. Now my problem is i need to pass the 2D array to the following Soap schema. Request ...
4
votes
3answers
667 views

How to fix unicode issue when using a web service with Python Suds

I am trying to work with the HORRIBLE web services at Commission Junction (CJ). I can get the client to connect and receive information from CJ, but their database seems to include a bunch of bad ...
4
votes
3answers
2k views

SOAP, Python, suds

Please advise library for working with soap in python. Now, I'm trying to use "suds" and I can't undestand how get http headers from server reply Code example: from suds.client import Client url = ...
4
votes
2answers
2k 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 ...
3
votes
0answers
105 views

Error importing adsense api v3 wsdl with python-suds

This script from suds.client import Client server = "https://sandbox.google.com" client = Client(server + "/api/adsense/v3/AccountService?wsdl") print client doesn't work with AdSense API v3: $ ...
3
votes
2answers
1k views

Suds over https with cert

I have soap service under Apache with ssl, suds works greate without ssl. I have client certificate (my.crt and user.p12 files). How I need to configure suds client ot make it work with service over ...
3
votes
1answer
187 views

How to get http response code from suds client when using faults

I'm using suds to call a Windows/WCF service like so: # Setting up my client client = Client(wsdl, transport = my_transport, location = url, faults = True, headers = my_soap_action_header, cache = ...
3
votes
3answers
656 views

How can I output what SUDs is generating/receiving?

I have the following code: from suds.client import Client import logging logging.basicConfig(level=logging.INFO) logging.getLogger('suds.client').setLevel(logging.DEBUG) ...
3
votes
1answer
447 views

Suds Performance - client.factory.create() takes more than 2 minutes

I'm using Suds to send/receive SOAP messages in Python. It is taking an insanely long time to create an object to send via the soap envelope. client = Client(wsdldict['Contact'], faults=True, ...
3
votes
2answers
839 views

Change web service url for a suds client on runtime (keeping the wsdl)

First of all, my question is similar to this one But it's a little bit different. What we have is a series of environments, with the same set of services. For some environments (the local ones) we ...
3
votes
2answers
739 views

Overwrite the Soap Envelope in Suds python

I have a camera and I am trying to connect to it vis suds. I have tried to send raw xml and have found that the only thing stopping the xml suds from working is an incorrect Soap envelope namespace. ...
3
votes
1answer
1k views

Why do I get a connection error / timeout when using python suds to connect to Microsoft CRM?

When I try to connect to an MS CRM web service using suds/python-ntlm, I am getting a timeout on requests. However, the code that I'm trying to replace -- which calls out to the cURL command line app ...
3
votes
1answer
3k views

How to pass SOAP headers into python SUDS that are not defined in WSDL file

I have a camera on my network, I am trying to connect to it with suds but suds doesn't send all the information needed. I need to put extra soap headers not defined in the WSDL file so the camera can ...
3
votes
3answers
2k 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: ...
2
votes
1answer
48 views

How do I send key/value pairs to a web service with Python/SUDS?

I'm trying to access a really simple SOAP web service via Python script using the SUDS library. Here's the WSDL body: The python code I'm using to submit these two key/value pairs is as follows: ...
2
votes
2answers
277 views

Python - VMWare vSphere (WEB SDK) - SUDS

How do i contact the vSphere (or VMWare) form Python either with some form of library or via SUDS to get the number of number of vCPU or a specific host/guest/virtual-machine? Currently i'm trying: ...
2
votes
1answer
663 views

Exchange Web Services (EWS) - Exchange 2010 soap calls via suds

Im trying to send an email via Exchange Web Services using suds 0.4.1: import suds from suds.client import Client from suds.transport.https import WindowsHttpAuthenticated url = ...
2
votes
1answer
135 views

UnicodeDecodeError in SUDS but only in the .exe generated by py2exe

I have a Python 2.7 script SendPreord.py which communicates with web services using SUDS. In the script I call a web service method passing some parameters as strings (runJob(par1, par2, par3)). It ...
2
votes
1answer
102 views

Consume SOAP webservices using escaped xml as attribute

I am using suds to consume SOAP web services like this way: from suds.client import Client url = "http://www.example.com?wsdl" client = Client(url) client.service.example(xml_argument) If I call ...
2
votes
2answers
179 views

Why am I getting “Exception: (404, u'Not Found')” with Suds

I am trying to connect to SugarCRM soap services (what's the correct terminology?) using Suds: import logging from suds.client import Client logging.basicConfig(level=logging.INFO) url = ...
2
votes
2answers
427 views

Best practice for handling exceptions from libraries imported by other libraries in Python?

What is the appropriate way for handling exceptions from libraries imported by other libraries in Python? For example, I have a library called "pycontrol" that I import into my main program. ...
2
votes
2answers
499 views

Python suds - method not defined in service

I'm attempting to use suds to connect to a KnowledgeTree web service on my local network. I can create the client and retrieve the service information, but calling the login method listed there ...
2
votes
0answers
283 views

python suds - Insert raw xml node into factory-created object

In python suds, how do I insert a Raw XML node into an object created via the factory.create method, while still maintaining attributes? Is there some _child field I could use? Basically, how do I ...
2
votes
2answers
699 views

Suds: Type not found on response

I'm having a hard time getting a python SOAP client based on suds to parse a response: the client is constructed correctly and parses the WSDL just fine. As far as I can see there are no imports in ...
2
votes
1answer
783 views

Python - suds - no module

I've installed Python 2.7.1, setuptools and suds 0.4. When running my script, I'm having the following error: Traceback (most recent call last): File "C:\Python27\test.py", line 5, in from ...
2
votes
2answers
365 views

Accessing a web service

I have been trying to write a client to access a web service for work. I have successfully written clients using SUDS and ZSI with Python. I have used NetBeans 6.9 to assist in writing a few Java ...
2
votes
1answer
313 views

Custom authentication in suds library (Python)

I need to access a SOAP server with WSDL where the authentication is done by sending two parameters, UserId and AccessToken. I tried this way: token = UsernameToken( UserId, ...
2
votes
1answer
619 views

Strange behavior from HTTP authentication with suds SOAP library

I have a working python program that is fetching a large volume of data via SOAP using suds. The web service is implemented with a paging function such that I can grab nnn rows with each fetch call ...
2
votes
1answer
113 views

How do I make a normal HTTP request with a suds transport?

My suds transport is configured to perform authentication against a service. I would like to reuse the transport to make GET and POST requests against the same server with the same authentication. Is ...
2
votes
1answer
317 views

Python, suds, manage array answer

I'm using suds library to fetch a list of products from a webservice. This is a sample code: from suds.client import Client url = 'WSDLURL' client = Client(url) result = ...
2
votes
3answers
854 views

Is it possible to cache a python suds client?

I'm currently running python suds against a wsdl file and its corresponding 50+ xsd files. The following call to Client takes about 90 seconds: from suds.client import Client url = ...
2
votes
1answer
690 views

Is it possible to use python suds to read a wsdl file from the file system?

From suds documentation, I can create a Client if I have a url for the WSDL. from suds.client import Client url = 'http://localhost:7080/webservices/WebServiceTestBean?wsdl' client = Client(url) ...
2
votes
1answer
343 views

Using Suds for SOAP in python, are suds.client.Client objects thread safe?

I'm using Suds to access a SOAP web service from python. If I have multiple threading.Thread threads of execution, can each of them safely access the same suds.client.Client instance concurrently, or ...
2
votes
3answers
242 views

How do i add a new object with suds?

I'm trying to use suds but have so far been unsuccessful at figuring this out. Hopefully it's something simple that i'm missing. Any help would be highly appreciated. This is supposed to be the raw ...
2
votes
2answers
467 views

How to add http headers in suds 0.3.6?

I have an application in python 2.5 which sends data through suds 0.3.6. The problem is that the data contains non-ascii characters, so I need the following header to exist in the soap message: ...
2
votes
1answer
433 views

Accessing the Atlassian Crowd SOAP API with Suds (python SOAP library)

Has anybody had any recent success with accessing the Crowd SOAP API via the Suds Python library? I've found a few people successfully doing it in the past but Atlassian seems to have changed their ...
2
votes
1answer
594 views

Has anyone combined soap.py or suds with python-ntlm?

I'd like to replace an app's current (badly busted and crufty) cURL-based (cURL command-line based!) SOAP client with suds or soap.py. Trouble is, we have to contact an MS CRM service, and therefore ...
2
votes
1answer
750 views

Serializing a suds object in python

Ok I'm working on getting better with python, so I'm not sure this is the right way to go about what I'm doing to begin with, but here's my current problem... I need to get some information via a ...
2
votes
2answers
1k views

How can I pickle suds results?

To avoid repeatedly accessing a SOAP server during development, I'm trying to cache the results so I can run the rest of my code without querying the server each time. With the code below I get a ...
2
votes
2answers
433 views

Passing arguements into SUDS client statement

I am using SUDS (Like SOAP) to test WSDL files. The methods contain types that are linked to further functions. I am not sure how to access the variables stored in the types that are displayed. Some ...

1 2 3 4