0
votes
1answer
11 views

SOAP Solution in python

i'm rather new to SOAP and web services and i tried to create working and stable SOAP environment. After some reading i decided to use suds client and soaplib server. I'm using python2.7 and i've ...
1
vote
0answers
10 views

What does this ZSI error mean, and how do I debug it?

I have a set of Python classes that I have generated for a SOAP service from a WSDL with ZSI. I have another Python module that calls the SOAP service using these generated classes. Unfortunately, the ...
0
votes
0answers
14 views

Python Soap x.509 authentication/signing

I'm making an python application that needs to pull data from a web service via SOAP. The web service uses x509 certificate as authentication and demands that the SOAP request is signed with the ...
0
votes
3answers
25 views

From Spyne to Suds

I'm trying to use a combination of Spyne and Suds(although I'm not very particular on using Suds) to create a module which functions as a middleman between two SOAP entities. There is a client, C, ...
1
vote
1answer
27 views

Exception in port type using Suds

I am trying to connect to ARAMEX shipping SOAP api using python suds using following code. import suds from suds.client import Client client = ...
0
votes
1answer
22 views

Trouble consuming XLedger's SOAP/WSDL interface

I'm having trouble figuring out how to consume this WSDL interface. I have zero experience with WSDL (and SOAP in general) and to top it off the consumer has to run on Google AppEngine. This leaves me ...
0
votes
0answers
13 views

Map type in SOAP Service

I'm trying to consume a web service in Python using suds that contains a reference to Map type from the namespace http://xml.apache.org/xml-soap. I'm guessing that this is some non standard type that ...
0
votes
1answer
23 views

Set up spyne to skip a field which is not present in SOAP request?

I have a SQLALchemy model with such a column: updated_at = Column(DateTime, nullable=False, server_default=func.now(), onupdate=func.now()) Which generates WSDL: ...
0
votes
1answer
62 views

Convert string to correct charset

Im trying to save unicode data to an external webservice. When I try to save æ-ø-å, it get saved as æ-ø-Ã¥ in the external system. Edit: (My firstname value is Jørn) (Value from django J\\xf8rn) ...
0
votes
0answers
33 views

Sending data to webservice using suds

Im trying to send a datastructure to a webservice, but not sure if I have found the best method. membermap = client.factory.create('ns2:Map') firstname = client.factory.create('ns2:mapItem') ...
0
votes
1answer
70 views

Parsing Suds SOAP complex data type into Python dict

I have some data coming from a SOAP API using Suds which I need to parse in my Python script. Before I go off and write a parser (there is more than just this one to do): 1) Does anyone recognise ...
1
vote
2answers
46 views

Remember state between method calls

I'm exposing web service using python ladon package and SOAP. I'm want to remember state between two method calls. Here is example code: from ladon.ladonizer import ladonize import logging class ...
0
votes
0answers
23 views

Parsing error in Python SOAP Client for MTOM Responses

We are using SUD for calling SOAP APIs and are getting responses correctly but they are not getting parsed. The Issue here is that the responses use MTOM Encoding and SUDs is not able to parse it.This ...
0
votes
0answers
29 views

Which python SOAP libraries are still maintained?

There are a plenty of question regarding python SOAP clients on StackOverflow. However, all of them are 3+ years old. The question is which python SOAP client libraries are currently actively ...
0
votes
0answers
41 views

WSDL SOAP body error in SUDS

I am trying to use the suds library in Python to use a SOAP web service with a WSDL. It requires sending a complex type to the server, but the suds library does not appear to be attaching the complex ...

1 2 3 4 5 24
15 30 50 per page