vaibhav negi wrote at 2012-3-27 10:50 +0530: >I am trying to write soap rpc apis in zope 3 project. I am able to >serve soap requests reading the example provided in rpclib >documentation but that runs on independent wsgi server. i want to >serve soap requests from zope 3 server. any clue?
You might have a look at "dm.zope.rpc.wsdl_suds". It does something like this for Zope 2, using suds for SOAP demarshaling/marshaling. The Zope 3 way would be to register a SOAP view (rather then a browser view) and do their demarshaling, call the function and marshal the result. -- Dieter _______________________________________________ Soap mailing list [email protected] http://mail.python.org/mailman/listinfo/soap
