I'm making a SOAP call to a web service that returns a paginated response. Zeep is the only Python library I've found that even works for this web service.
When I make the call, it returns the first 100 records (1 page) of results. How do I either…
I'm trying to make a SOAP client in python using zeepSo far I've had zero luck in trying to get it to run. I keep getting the following error.
Traceback (most recent call last):
File "C:/Users/z905/PycharmProjects/Soap_Test/soap_test.py", line…
I am getting an error and cannot find a way to get around it - it completely stops my progress. How can I access this API with SOAP through Python?
import zeep
endpoint_soap = 'http://api4.ibmmarketingcloud.com/SoapApi?wsdl'
client =…
I have a problem with WSDL operation name:import. It is one of the most important remote operation, that update product list on the remote server.
The problem starts when I want to call the method:
client.service.import('ns0:Product_Import',…
I'm new in Python and I trying to make this C# method
protected void read(){
string[] attributes = new string[16];
attributes[0] = "ref_num";
attributes[1] = "tenant.name";
attributes[2] = "request_by.first_name";
…
I am working on a simple application with GUI which connect to a server via SOAP and request some data, this data is returned in XML format
I was able to run in my application successfully but due to threading, GUI is freezes till the complete SOAP…
I want to instantiate an anonymous type that is defined in a wsdl for a soap API with Python and zeep.
For non-anonymous types i simply use a factory like this
abcinstance = factory.abc('whatever', part2 = 'goes')
and afterwards give it to the…
I am using zeep to connect to the Five9 Call Center API in order to retrieve the Call Log Report.
My code is as follows:
class Five9api:
start = (datetime.now() - timedelta(days=1)).replace(hour=0, minute=0, second=0, microsecond=0)
end =…
I'm trying to use ZEEP to do SOAP requests.
I got this request:
def status(request, IP):
URL = "http://" + IP + "/Service"
session = Session()
session.auth = HTTPBasicAuth('username', 'password')
client = Client(URL,
…
I am using the zeep python package so as to call a function through SOAP which accepts an argument of 'ArrayofInt' type.
Passing a 'normal' integer array doesn't work... the workaround is to run through the elements of the array with a for loop and…
I need a python SOAP library that can handle multipart attachments. My understanding is that this is not supported by SOAPpy or suds but that it is supported by ZSI and zeep. However, while SOAPpy works just fine with the WSDL file that I need to…
I am trying to create a python soap client with zeep.
But i can't figure out how to use the functions which are defined in the WSDL.
Here is my code:
from requests import Session
from requests.auth import HTTPBasicAuth
import zeep
from…