I want to share my example Zend Soap Server module. This is Zend Framework module, with default folders structure. You can just drop it your “modules” directory and server will be ready for work.
My aim was to show how Service documentation is made “on the fly”. You only need to change DocBlock in service class. Fully working documentation will be generated by reflection class.
Some things worth mentioning:
- I have left ini_set(“soap.wsdl_cache_enabled”, “0″); because $server->setWsdlCache(false); does nothing
- Authentication example is for demo only and should not be considered as proposed solution.