Generating WSDL when using PHP's native SOAP class? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T00:39:26Zhttp://stackoverflow.com/feeds/question/568916http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/568916/generating-wsdl-when-using-phps-native-soap-class1Generating WSDL when using PHP's native SOAP class?Stuart2009-02-20T09:40:55Z2009-02-20T14:33:52Z
<p>Hello,</p>
<p>I'm using the native SOAP class in PHP 5, having changed from NuSOAP as the native class is faster (and NuSOAP development seems to have ceased). However the PHP 5 SOAP lacks the ability to generate WSDL.</p>
<p>Has anyone experience of generating WSDL in PHP? If so, please recommend your preferred method.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/568916/generating-wsdl-when-using-phps-native-soap-class/569444#5694440Answer by Ciaran McNulty for Generating WSDL when using PHP's native SOAP class?Ciaran McNulty2009-02-20T12:42:32Z2009-02-20T12:42:32Z<p>Generating a WSDL on the fly is not something that happens very often - it would tend to raise a few questions about the stability of your service!</p>
<p>Zend Studio can generate a WSDL from a PHP class, and there are a few other similar tools.</p>
<p>If you do need to generate the WSDL dynamically, take a look at <a href="http://framework.zend.com/manual/en/zend.soap.autodiscovery.html" rel="nofollow">Zend_Soap_AutoDiscover</a></p>
http://stackoverflow.com/questions/568916/generating-wsdl-when-using-phps-native-soap-class/569747#5697470Answer by Stuart for Generating WSDL when using PHP's native SOAP class?Stuart2009-02-20T14:33:52Z2009-02-20T14:33:52Z<p>I decided easier just to try myself. After trying a couple, I easily managed to get <a href="http://www.schlossnagle.org/~george/blog/index.php?/archives/234-WSDL-Generation.html" rel="nofollow">http://www.schlossnagle.org/~george/blog/index.php?/archives/234-WSDL-Generation.html</a> to generate the WSDL for me.</p>