Questions tagged [zeep]

Zeep: Python SOAP client

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

395 questions
-1
votes
1 answer

How to create a soap-enc:Array parameter with python zeep?

I have to construct a SOUP method Agw_typeGenerarDespachoIn from wsdl
-1
votes
1 answer

Zeep Client operation arguments and anytype

Looking for some help on how to complete the list operation. Code would be something like client = Client(wsdl, plugins=[history, MyLoggingPlugin()]) client.service.list(?????,????) Based on this excerpt from the python3 command: python –m zeep…
dbjock
  • 18
  • 4
-1
votes
1 answer

python zeep soap dynamic xml request

I have the following python code: from requests import Session from requests.auth import HTTPBasicAuth from zeep import Client from zeep.transports import Transport session = Session() session.auth = HTTPBasicAuth("**", "**") client =…
-1
votes
1 answer

Api Request WSDL Python

I am trying to make an api connection via wsdl-soap in Python. Here are the codes I used. import zeep wsdl = 'http://dev.gittigidiyor.com:8080/listingapi/ws/CategoryService?wsdl' client = zeep.Client(wsdl=wsdl) send_data=[{ 'cat:getCategories'…
maydin
  • 3,715
  • 3
  • 10
  • 27
-2
votes
2 answers

Reading SOAP with Zeep

I'm trying to read this Soap API 'https://www.shab.ch/soapserver' using Python's Zeep. from requests import Session from requests.auth import HTTPBasicAuth from zeep import Client from zeep.transports import Transport session =…
BarJacks
  • 119
  • 2
  • 6
1 2 3
26
27