Generating WSDL when using PHP's native SOAP class?

前端 未结 4 1837
不知归路
不知归路 2020-12-30 03:17

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 lac

4条回答
  •  情歌与酒
    2020-12-30 04:00

    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!

    Zend Studio can generate a WSDL from a PHP class, and there are a few other similar tools.

    If you do need to generate the WSDL dynamically, take a look at Zend Framework library: Zend_Soap_AutoDiscover

提交回复
热议问题