suds Questions

1

Solved

I'm currently working on a web toolkit in python and I have to make a lot of SOAP calls. Unfortunately for me, a couple of those calls use MTOM. I'm currently using SUDS and I would like to know if...
Saidel asked 19/4, 2013 at 15:10

3

Solved

how to generate request to method with "choice" arguments? part of wsdl at http://127.0.0.1/service?wsdl: <xs:complexType name="ByA"> <xs:sequence> ... </xs:sequence> </xs:complexTyp...
Ralfston asked 11/5, 2011 at 11:24

3

Solved

I'm using the latest version of suds (https://fedorahosted.org/suds/) for the first time and I'm getting stalled at step one. suds.TypeNotFound: Type not found: '(schema, http://www.w3.org/2001/X...
Manhour asked 18/1, 2011 at 2:6

1

My application in Python(2.7) should use a client for consume a SOAP web service as is described on a WSDL(Generated by Magento(1.7.0) and posted at the end). For this task Suds(4.0) was chosen, w...
Veronicaveronika asked 24/6, 2014 at 23:1

4

I have to do soap request with suds and Python <soap:Body> <registerOrder> <order merchantOrderNumber="" description="" amount="" currency="" language="" xmlns=""> <retu...
Malan asked 7/4, 2011 at 22:26

3

Solved

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 = Client('https://www.clarityaccou...
Lussier asked 5/3, 2010 at 15:58

7

Solved

[Major Edit based on experience since 1st post two days ago.] I am building a Python SOAP/XML script using Suds, but am struggling to get the code to generate SOAP/XML that is acceptable to the se...
Mongolian asked 22/2, 2012 at 2:4

1

Solved

This question is similar to this one: How can I output what suds is generating/receiving? The problem is that I am using the suds fork by Jurko and after version "0.4.1 jurko 5" the Client.last_s...
Rugged asked 18/3, 2014 at 17:49

2

I am trying use SUDS and am stuck trying to figure out why I can't get authentication to work (or https). The service I am trying to access is over https with basic digest authentication. Based on...
Faison asked 2/1, 2012 at 3:40

2

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....
Scriptorium asked 14/1, 2012 at 2:49

1

So Ive been using suds with great benefit to consume a webservice. Hit an issue with performance, for some data the cpu would spike hard, it would take more than 60s to complete the request, which...
Lapillus asked 4/3, 2014 at 11:48

1

Solved

I would like to send my hand build xml by SUDS using WSDL. I found, that I can do it like that: xml = Raw(""" <SOAP-ENV:Envelope xmlns:ns0="urn:ca:std:cdc:tech:xsd:cdc.001.01" xmlns:ns1="http:/...
Gelderland asked 15/2, 2014 at 12:13

2

Solved

Background I'm building a SOAP client with python 2.7.3 and using the suds 0.4.1 library provided by Canonical. The server is using basic authentication over HTTPS. Problem Can't pass authenticatio...
Conflagration asked 31/7, 2012 at 14:31

1

Solved

I want to extract all the methods and want to send some parameters using how can I do automation using python. I want only methods as user input and send parameters to the method. How can I achie...
Noemi asked 3/1, 2014 at 12:4

4

Solved

i'm testing out SUDS library and I'm trying to make a simple request to an endpoint but i get unusual output. Why? from suds.client import Client import logging logging.basicConfig(level=logging.I...
Rolfston asked 8/12, 2013 at 0:3

3

Solved

Does anyone know about a good SUDS tutorial. I am trying to run tests on WSDL files and I am having trouble finding any imformation on how to do this. Is SUDS much different to SOAPy and would anyo...
Ingmar asked 14/1, 2010 at 11:27

1

I'm using python suds library to make a SOAP client based on a local wsdl file. My goal is to use Twisted as the backend so I query the SOAP servers in a asyncronous way. I know this topic has bee...
Breastbeating asked 24/10, 2013 at 15:7

6

Solved

I am using suds client for WSDL in our project. i have this code . sudsclient = sudsClient(settings.WSDL_URL) values = { "MerchantCode": settings.YP_MERCHANT_CODE, "MerchantReference": str(ref...
Brainless asked 10/3, 2012 at 6:46

4

I use python/suds to implement a client and I get wrong namespace prefixes in the sent SOAP header for a spefic type of parameters defined by element ref= in the wsdl. The .wsdl is referencing a ...
Spiccato asked 18/4, 2012 at 10:5

2

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 a...
Deviant asked 25/3, 2010 at 17:32

0

I am calling methods in a SOAP API from my Python code using suds. I am trying to programmatically determine what information to send as parameters to the methods in the API. One of the WSDLs I'm l...
Ann asked 20/3, 2013 at 1:20

3

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...
Indignant asked 14/5, 2010 at 17:42

3

Solved

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 therefor...
Were asked 25/3, 2010 at 14:57

1

I'm running SUDS 0.4 on Linux Slackware 13.0 with python 2.6.2. When I call SOAP method using this code: from suds.client import Client client = Client(url='file:acctWeb.wsdl', location='http://...
Printery asked 19/1, 2012 at 14:19

3

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: Zeep: active and well documented in P...
Schizophrenia asked 19/10, 2011 at 6:20

© 2022 - 2024 — McMap. All rights reserved.