zeep

SOAP, How to get data from secound service

SOAP, How to get data from secound service Question: Im try to take data from API with SOAP. Everything works, but i have 2 Services on that API. First one is for test, and it works. But data its ‘hiden’ on secound. How can i get there? I use zeep. Asked By: Adam Fatyga || …

Total answers: 1

AttributeError at /callback/ module 'zeep.client' has no attribute 'service'

AttributeError at /callback/ module 'zeep.client' has no attribute 'service' Question: when I want to use the zeep package in django for the payment gateway, I face an error. error image, code image callback function in views.py in shop app: # Callback function def callback(request): if request.GET.get(‘Status’) == ‘NOK’: authority = request.GET.get(‘authority’) invoice = get_object_or_404(models.Invoice, authority=authority) …

Total answers: 1

Sending a raw XML request to a SOAP service with Zeep (trying to duplicate an argument)

Sending a raw XML request to a SOAP service with Zeep (trying to duplicate an argument) Question: I am able to send a simple SOAP request with Zeep. with client.settings(strict=False): resp = client.service.demandeFicheProduit( demandeur=self.xxx, motDePasse=self.yyy, ean13s=”foo”, multiple=False) However, I need to give multiple times the ean13s argument, which is not possible in a Python function …

Total answers: 1

python zeep: send un-escaped xml as content

python zeep: send un-escaped xml as content Question: 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 …

Total answers: 2

How to parse SOAP XML with Python?

How to parse SOAP XML with Python? Question: Goal: Get the values inside <Name> tags and print them out. Simplified XML below. <?xml version=”1.0″ encoding=”UTF-8″?> <soap:Envelope > <soap:Body> <GetStartEndPointResponse > <GetStartEndPointResult> <Code>0</Code> <Message /> <StartPoints> <Point> <Id>545</Id> <Name>Get Me</Name> <Type>sometype</Type> <X>333</X> <Y>222</Y> </Point> <Point> <Id>634</Id> <Name>Get me too</Name> <Type>sometype</Type> <X>555</X> <Y>777</Y> </Point> </StartPoints> </GetStartEndPointResult> </GetStartEndPointResponse> …

Total answers: 5