the server example given in the wiki is not working with the latest version.
SoapDispatcher is expecting a name argument missing in the example code.
existing code:
dispatcher = SoapDispatcher(
location = "http://localhost:8008/",
action = 'http://localhost:8008/', # SOAPAction
namespace = "http://example.com/sample.wsdl", prefix="ns0",
trace = True,
ns = True)
valid code:
dispatcher = SoapDispatcher(
'my_dispatcher',
location = "http://localhost:8008/",
action = 'http://localhost:8008/', # SOAPAction
namespace = "http://example.com/sample.wsdl", prefix="ns0",
trace = True,
ns = True)
Original issue reported on code.google.com by jphthier...@gmail.com on 6 Sep 2010 at 10:46
Original issue reported on code.google.com by
jphthier...@gmail.com
on 6 Sep 2010 at 10:46