mvantellingen / python-zeep

A Python SOAP client
http://docs.python-zeep.org
Other
1.88k stars 586 forks source link

Missing mustUnderstand="1" #1217

Open hmlinaric opened 3 years ago

hmlinaric commented 3 years ago

I'm using zeep 4.0.0

And signing soap using:

sign = BinarySignature('/etc/pki/tls/certs/xxxx.pem', '/etc/pki/tls/certs/xxxx.pem') session = Session() session.cert = '/etc/pki/tls/certs/xxxx.pem' transport = Transport(session=session) client = Client('http://192.168.62.125/init_main.wsdl', wsse=sign, transport=transport) ... ... service.test()

At the end I get this XML:

<?xml version='1.0' encoding='utf-8'?> <soap-env:Envelope xmlns:soap-env="http://www.w3.org/2003/05/soap-envelope">

JayantJain720 commented 3 years ago

Hi, Did you found the solution for it? I'm facing the same issue.