Questions tagged [zeep]

Zeep: Python SOAP client

Zeep: Python SOAP client http://docs.python-zeep.org

395 questions
0
votes
1 answer

How to get multi-page SOAP response with Zeep?

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…
Matt
  • 775
  • 7
  • 24
0
votes
1 answer

python SOAP with zeep, requests.exception: 403 client error

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…
cyberbemon
  • 3,000
  • 11
  • 37
  • 62
0
votes
1 answer

How can I get past error in SOAP library zeep?

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 =…
Scott Stoltzman
  • 363
  • 1
  • 15
0
votes
1 answer

SOAP operation name:import with Zeep

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',…
Jarex
  • 3
  • 2
0
votes
0 answers

python - transform a C# method in python method

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"; …
Dibu Escobedo
  • 165
  • 1
  • 3
  • 13
0
votes
1 answer

pyqt5 QThread with SOAP Zeep Client

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…
Moo
  • 27
  • 4
0
votes
0 answers

Instantiating an anonymous type of a Soap API with Python

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

Passing parameters to zeep client

I have this piece of a wsdl file: YZSMOPMO
Giuseppe Ricci
  • 317
  • 8
  • 20
0
votes
1 answer

Zeep : Need to convert this sample soap request

Soap Request : ACTIVE
Vish Shady
  • 327
  • 1
  • 5
  • 15
0
votes
1 answer

Python: Zeep Error

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 =…
Riley Hun
  • 2,541
  • 5
  • 31
  • 77
0
votes
1 answer

missing wsdl:service definitions in the WSDL

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, …
sumpen
  • 503
  • 6
  • 19
0
votes
1 answer

How insert element to generated request?

I work with onvif wsdls. And I want to send request "Subscribe" with Filter. Filter contains TopicExpression. Request like this:
Vorobey.A
  • 143
  • 8
0
votes
3 answers

Convert python array of int to SOAP ArrayofInt

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…
sen_saven
  • 182
  • 12
0
votes
1 answer

Python SOAP WSDL works in SOAPpy but not ZSI or zeep

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…
sevredox
  • 33
  • 6
0
votes
0 answers

Python Soap client WSDL functions

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…
aius
  • 9
  • 1