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
0
votes
1 answer

SOAP web service behind proxy, access using python-suds

I have this strange case scenario with python suds. I have a soap service (java) running on a local ip, say http://10.0.0.1:8080/services/ I use suds http base auth within the local network and it's working fine. from suds.client import Client c =…
nemo
  • 12,241
  • 3
  • 21
  • 26
0
votes
1 answer

SharePoint via SOAP using Python

I have been following the solution noted here - as this is exactly what I need to achieve; how can i use sharepoint (via soap?) from python? however when I run one of the last lines of this code I get the following error; >>> client =…
David
0
votes
1 answer

SQL Query result via .net webservice to a non .net- Python client

I wish to consume a .net webservice containing the results of SQL Server query using a Python client. I have used the Python Suds library to interface to the same web service but not with a set of results. How should I structure the data so it is…
Eric Hewett
  • 557
  • 7
  • 16
0
votes
1 answer

How do you create an xsd:int instance in suds?

I'm using suds 0.4 I'm trying to create a node like this (from example SOAP request): 123456 It is a parameter of a SOAP call and merely passing an int generates this: 123456 which gives me Expected: class…
Robin Elvin
  • 1,207
  • 12
  • 28
0
votes
1 answer

Is there something wrong with this XML import?

I am consuming a WSDL that is causing problems for my SOAP client (Python SUDS). Before developers added into the WSDL, my SOAP client was working, but now it chokes my SOAP client. The odd thing is that some of the namespaces reference…
trinth
  • 5,919
  • 9
  • 40
  • 45
0
votes
1 answer

Custom argument attributes in Python suds

I'm having trouble with suds. I'm trying to make a generic system to make calls to an API, some parameters are defined as classes with multiple attributes. Initially all these attributes are empty, and I'm trying to pass a dictionary to fill some of…
Charles Menguy
  • 40,830
  • 17
  • 95
  • 117
0
votes
0 answers

SOAP web service with soaplib & suds

I use soap webservices with soaplib & create client from command prompt using suds, This working properly. Can anybody tell me how to create client through view? How to pass oject to rpc() or soap() method of soaplib? Thanks in advance
Meenakshi
  • 259
  • 5
  • 19
0
votes
1 answer

checking suds version in python

how to check the version of suds installed in python, i look over in the net but i cannot find one. i try this one. in running python manage.py shell >>> import suds >>> suds but i got the python version on running it.
gadss
  • 21,687
  • 41
  • 104
  • 154
-1
votes
1 answer

access intranet webservice using python

I need to access webservice under intranet. I tried suds-jurko, under internet, it works well. But it doesn't work under intranet, because it always try to open "http://www.w3.org/2001/xml.xsd" and "http://www.w3.org/2001/XMLSchema.xsd" which can't…
xuqiang
  • 102
  • 1
  • 6
-1
votes
1 answer

How to create a soap-enc:Array parameter with python zeep?

I have to construct a SOUP method Agw_typeGenerarDespachoIn from wsdl
-1
votes
1 answer

Mindbody api (using python) emitting not well-formed (invalid token)

Hi friends I am trying to implement Mindbody API using python. But I am getting error that caused my work down. Down the page error is shown. Traceback (most recent call last): File "Appointment.py", line 6, in class…
Ravi
  • 1
-1
votes
1 answer

Get SOAP attachment

There is a lot of questions with same subject, but no replies, especially about receiving. There exist example how to send attachment, but I didn't found how to receive it. Is there any solution on python for receiving attachments? I even agree to…
Arkady
  • 2,084
  • 3
  • 27
  • 48
-1
votes
1 answer

Can't get Python SUDS to query a code with this WSDL

I am not getting a result when I run this. Somehow, I think I should be getting something other than 'nothing' when I query a valid HCPCS code (the 99213 code in the 4th line below). Not sure what I am doing wrong. My code: from suds.client import…
Harry
  • 256
  • 1
  • 2
  • 13
-1
votes
1 answer

Suds is not caching wsdls

I 'm using Suds for RPC calls over SOAP, and the client refuses to cache between calls (resulting in waiting 30+ seconds waiting for the client to initialise). Can anyone see what needs to be done in addition to the below in order for caching to be…
Trent
  • 2,328
  • 3
  • 33
  • 51
-2
votes
1 answer

Python suds getting data via soap request importing to pandas - define columns and rows

I am using a suds to get data from a wsdl, and I have successfully gotten data from the corresponding service. Now in response, I have the below data which is the "sudsobject" (rowset){item[] = ](row){]item[] = (column){name = "client_hi"value =…
1 2 3
45
46