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...
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...
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...
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...
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...
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...
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...
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...
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....
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...
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...
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...
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 ...
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...
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...
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...
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...
1
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.