views:

41

answers:

1

i want to write an app (python) which reads the soap i get from the soap generating service on appengine. the services docs says: '...you will get the SOAP call with the XML packet...' i get this packet on an url i can set.

how can i read this xml packet and parse the values i need?

A: 

You should use a SOAP client framework, like for instance this: https://fedorahosted.org/suds/

k_b
even if i get this xml packet with the call and i only need to read it without invoking additional functions?
aschmid00
You'll get the SOAP message (XML) through a normal http request, which suds will help you achieve. It will also help you interpret the contents of the SOAP message. Just read through the documentation (https://fedorahosted.org/suds/wiki/Documentation), it seems simple enough.
k_b
i got it out of the request body... so i wont need any further frameworks for it. thx anyway
aschmid00