Remi Cool wrote:
Hello,Is it possible to run a nevow site and and serve XMLRPC (or SOAP) requests on a single port? I've tried to make it work some time ago, but to no avail.
I believe you can do this:
class Xrpc(xmlrpc.XMLRPC):
def xmlrpc_echo(self, arg):
return arg
xrpc = Xrpc()
page = NevowRootPage()
page.putChild('RPC2', xrpc)
_______________________________________________
Twisted-web mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
