Hello,
I am reading this turorial http://diveintopython.org/soap_web_services/introspection.html and i am trying to echo out all my wsdl method. I am trying to do this on my external web hosting server.
I have got the modules installed but i am getting an internal server error http://adamplowman.com/cgi-bin/test_xml.py
here is the code
from SOAPpy import WSDL
print "Content-type: text/html\n"
wsdlFile = 'http://www.adamplowman.com/sendservice.wsdl'
server = WSDL.Proxy(wsdlFile)
server.methods.keys()