Questions tagged [suds]

Suds is a SOAP services library for Python & JavaScript.

Suds is a SOAP services library for Python & JavaScript.
Suds leverages python meta programming to provide an intuative API for consuming web services. Runtime objectification of types defined in the WSDL is provided without class generation.

678 questions
5
votes
1 answer

Add Namespace to the default WSSE Security Object in Suds

I understand how to add a header to the SOAP request. But that generates a header that doesn't match the one I need to pass. That returns this header:
JiminyCricket
  • 7,050
  • 7
  • 42
  • 59
5
votes
0 answers

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 use an s:any child with Raw()? What I need to…
Dan
  • 2,157
  • 20
  • 24
5
votes
1 answer

Difference between Suds py3 and Suds Jurko

I new in python 3. First, I build soap client in python with suds py3. And it's not working. But after Install suds jurko, it's working now. What is the difference between suds py3 and suds jurko? In this article…
5
votes
1 answer

Python SUDS - Getting Exception 415 when calling a SOAP method

from suds.client import Client url = r'http://*********?singleWsdl' c = Client(url) The requests work fine till here, but when I execute the below statement, I get the error message shown at the end. Please help. c.service.Method_Name('parameter1',…
Ajit Joshi
  • 63
  • 1
  • 4
5
votes
2 answers

PicklingError: Can't pickle suds.sudsobject.User: attribute lookup suds.sudsobject.User failed

I have a django application... I am accessing the web service using the SOAP suds client... I need to create a user object from the entries entered in the GUI... This user object is to be passed to a method... But i get the following error:…
apoorva
  • 111
  • 1
  • 2
  • 5
5
votes
2 answers

Python: No Module named suds

I have python 2.7.9 installed. When I run my script, I get the following error: from suds.client import client ImportError: No module named suds.client So I downloaded the suds library from:…
Sammee Sharma
  • 91
  • 2
  • 3
  • 12
5
votes
1 answer

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 must I create separate Client objects for each…
kdt
  • 27,905
  • 33
  • 92
  • 139
5
votes
2 answers

What does suds mean by " not mapped to message part"?

I'm using suds for the first time and trying to communicate with a server hosted by an external company. When I call a method on the server I get this XML back.
Pratik Patel
  • 119
  • 8
5
votes
0 answers

Type not found wsdl python suds client - suds.TypeNotFound

I want to consume the webservice described in the following: http://www.content.de/api/clientservices.php?wsdl I am using python 2.7.x and suds version 0.4. What I tried 1 from suds.client import Client url =…
gosom
  • 1,299
  • 3
  • 16
  • 35
5
votes
0 answers

How to set Locale before login in vmware api call for Non English vCenter

I am using VMware API to perform vCenter operation. Used suds to make SDK call. My vCenter is configure for Non English (Japanese) support. import suds client = suds.client.Client("http://localhost/sdk/vimService.wsdl",…
Nilesh
  • 20,521
  • 16
  • 92
  • 148
5
votes
1 answer

Travelport Galileo python SoapClient

I need to develop python soapclient for Travelport Galileo uAPI. This is 30-day trial credentials for Travelport Universal API Universal API User ID: Universal API/uAPI2514620686-0edbb8e4 Universal API Password: D54HWfck9nRZNPbXmpzCGwc95 Branch…
Tima Ospanov
  • 199
  • 2
  • 13
5
votes
1 answer

How can I create complex types in suds python

How can I create complex types and how to pass the values in the complex type,how to call them. Below is the transferBalance method which take complex types (TransferBalance){ transDetails = (MoneyTransfer){ transferDate = None …
user3157084
  • 159
  • 1
  • 3
  • 8
5
votes
2 answers

Connect to Dynamics CRM with python suds

I want to use microsoft CRM webservice, I tried this code: wsdl_url = 'http://crm-test:5555/CRMDeveleopment/XRMServices/2011/Organization.svc?wsdl' username = 'user' password = 'pass' from suds.transport.https import WindowsHttpAuthenticated from…
nim4n
  • 1,813
  • 3
  • 21
  • 36
5
votes
2 answers

Accessing ISI Web of Science through SOAP

I'm trying to write a python script that retrieves information about publications from ISI Web of Science. I found domoritz's python script wos.py on GitHub. It uses Suds to connect to the ISI Web of Science web service. I've imported it into my…
FrancesKR
  • 1,200
  • 1
  • 12
  • 27
5
votes
2 answers

Django - WebService with soaplib xml characters or ampersand scaping?

Well this is my fisrt Question here so I’ll try to do it the best I can. I am trying to implement a WebService server in Python 2.6 and Django 1.4 with Soaplib 2.0. The Webservice is working and Django is serving it ok in the Django development…
Javier Vieira
  • 2,100
  • 20
  • 23