In working with a SOAP api, the wsdl spec describes the api key passed in the header in a complex namespaced structure as well as additional non-namespaced XML that relates to a paging mechanism for accessing bulk results…
I'm using zeep to handle some SOAP requests in Python and I've come across a situation for which I couldn't find any documentation (neither here, on SO, or their official docs).
First of, I created a factory:
factory =…
I'm using the Python library zeep to talk to a SOAP service. One of the required arguments in the documentation is of type List and in the WSDL I found this:
I am integrating BSE StarMF (https://github.com/utkarshohm/mf-platform-bse) in Django 2.0.2 and python 3.6. I am registering user through create_user_bse(user_id). While calling getPassword, I am receiving this error:
"zeep.exceptions.Fault: The…
This is basically the same question as here:
creating any object with python zeep
I am working on a Python script that includes SOAP API calls. Mostly these are working but I am having a problem with one. I have SOAPUI example working, it looks…
I am using python-3.7 and zeep to create a soap client for a web service.
I am able to hit the endpoint after a long struggle but I am not sure how to create request.xml for the service.
from requests import Session
from zeep import Client
from…
I'm trying to be able to set a custom fields in NetSuite using webservices.
The WSDL I'm using is: https://webservices.netsuite.com/wsdl/v2017_2_0/netsuite.wsdl
Currently I'm testing it on creating a customer. Here's what I have so far:
def…
I am trying to call service PushConstContractParcels of a wsdl soap service the problem is that I don't know how to send schema parameter in zeep package
my command: python3 -mzeep https://pearson:m0bApP5@cms.powerschool.com/pearson-rest/services/PublicPortalServiceJSON?wsdl
I get an error:
requests.exceptions.HTTPError: 401 Client Error: Unauthorized for url:…
Im using zeep SOAP client for python, trying to get some data to some wsdl_address. i now have following:
ambCase = {'data1':'value1',
'data2':'value2'}
client = zeep.Client(wsdl=WSDL_Address)
result = client.service.MethodName(GUID,…
I am trying to access a SOAP server using zeep. My server uses SSL with a custom certificate, and connection to that server works, with my cert, or ignoring it:
python -mzeep "https:///servicemanager/1?wsdl" --no-verify
I get a long list…
I am trying to create a client that consumes WSDL file and produces a proper SOAP message.
This is how I'm creating the client:
client = Client(
wsdl=wsdl
,transport = transport
,wsse = Signature('key.pem', 'cert.pem')
…