View Single Post
Join Date: Nov 2008
Posts: 58
Reputation: adam291086 is an unknown quantity at this point 
Solved Threads: 0
adam291086 adam291086 is offline Offline
Junior Poster in Training

SOAP Web Services with WSDL

 
0
  #1
Nov 10th, 2008
Hello,

I am reading this turorial http://diveintopython.org/soap_web_s...ospection.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

  1. from SOAPpy import WSDL
  2. print "Content-type: text/html\n"
  3. wsdlFile = 'http://www.adamplowman.com/sendservice.wsdl'
  4. server = WSDL.Proxy(wsdlFile)
  5. server.methods.keys()
Reply With Quote