I'm trying to sign a SOAP request with a certificate using python. I've tried python-zeep and its Signature methods and suds with py-wsse. Both don't give me the expected result.
Zeep gives me:
I am attempting to use Zeep to describe the operations and types in a given WSDL, so that a program knows the operation names, their parameter names, the parameter types, and parameter attributes.
This info will be used to dynamically generate a UI…
I want to program webservices to exchange data in Python using Zeep. I can access services only with my certificate. I have a PFX certificate, but I converted it to two .pem files.
My code:
from zeep import Client
from zeep.wsse.signature import…
my code was working before until i got this error whenever i make SOAP requests to Frontierlink Web Service.
File "/home/venv/lib/python2.7/site-packages/OpenSSL/_util.py", line 54, in exception_from_error_queue
raise…
I'm new to zeep.
I have the following that works very well:
import zeep
from zeep.cache import SqliteCache
from zeep.transports import Transport
wsdl = 'https://emaapitest.eset.com/Services/v2015_1/MSPService.svc?singleWsdl'
transport =…
I'm currently doing a integration with WSDL, and such decided to go with Python using the Zeep library.
I'm trying to model the response with mypy, so that it works with VSCode's Intellisense, as well as some giving me hints when I'm doing careless…
I'm using the zeep package to access some API on https, and on every connection it prints out a warning (to stderr):
Forcing soap:address location to HTTPS
Some searching I did turned up that the line responsible is this, which implies that this…
I think what I am trying to do is pretty much like github issue in zeep repo --- but sadly there is no response to this issue yet. I researched suds and installed and tried -- did not even get sending parameter to work and thought zeep seems better…
I am tryng to conenct to a SOAP webservice and use pandas to put in on a table.
Zeep give me this list:
[{
'ssPeca': '103',
'ssQtd': '1',
'ssUn': 'un'
}, {
'ssPeca': '291A',
'ssQtd': '8',
'ssUn': 'un'
}, {
'ssPeca':…
I'm porting over code that was developed with suds 0.6 over to zeep 2.4.0.
Previous suds code:
client = Client(WSDLfile, proxy=proxy, faults=True)
config = client.factory.create('perUserDataExportConfiguration')
config.param1 =…
I am trying to use Zeep with a choice inside a sequence but I cannot manage to make this work.
This is my code:
#create trade ref element
tradeReference_element = client.get_element('ns4:tradeReference')
trade_ref_object =…