Question

I am using SOAPpy, and Dive Into Python http://diveintopython3.ep.io/http-web-services.html says it should be returning a dictionary.
I am making a simple request, that returns an xml response that has the escape characters.

WSDLFILE = 'path/to/my/wsdl'
_server = WSDL.Proxy(WSDLFILE)
print _server.validServerMethod(client,password)

This returns a big ugly str of xml <?xml version="1.0" encoding="utf-8"?><it....

Can anyone help me with getting this to return an already parsed response? Thank you for your time.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top