为什么使用 NuSOAP 而不是 PHP SOAP?有什么好处吗?
就我在网络上搜索的情况而言,我可以看到大量关于如何设置 NuSOAP 并使用它在 PHP 中设置 SOAP 服务器和客户端的文章。
然而,他们似乎都没有指出使用它比 PHP 自己的本机 SOAP 库有任何优势。 之间的优缺点是什么
- NuSOAP
- PHP
- SOAP
- PEAR::SOAP
- Zend SOAP
As far as I have scourged the web, I can see an abundance of articles on how to setup NuSOAP and use it to setup a SOAP server and client in PHP.
However, none of them seem to point to any advantages of using it than PHP's own native SOAP library. What are the pros/cons between:
- NuSOAP
- PHP
- SOAP
- PEAR::SOAP
- Zend SOAP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NuSOAP 生成 WSDL。
PHP 的 SoapServer 则没有。
这就是我决定使用 NuSOAP 的原因。
对于客户端,我使用原生客户端,它有更好的错误报告。
NuSOAP generates WSDL.
PHP's SoapServer does not.
That is why I decided to use NuSOAP.
For client, I use native client, it has better error reporting.
PHP 的 SoapClient 类需要 PHP5 或更高版本。 Nusoap 和 Pear Soap 在 PHP4 上运行。这是主要的区别。最后检查 NuSoap 是否与 PHP5 正式兼容。我必须找到一个有人在 google code 上放置的端口才能在 php5 下运行它。
差不多就这样了。尽管我在使用 PHP 的 SoapClient 而不是 NuSoap 时遇到了随机奇怪的 WSDL 解析问题。最值得注意的是 netenberg.com 的许可 API。但基本上,如果您运行的是 PHP5,您可能只想使用 PHP 的 SoapClient 并省去使用外部库的麻烦
PHP's SoapClient class requires PHP5 or above. Nusoap and Pear Soap run on PHP4. That's the main difference. At last check NuSoap wasn't officially compatible with PHP5. I had to find a port someone put on google code in order to run it under php5.
That's pretty much it. Although I have run into random weird WSDL parsing issues when using PHP's SoapClient as opposed to NuSoap. Most notably netenberg.com's licensing API. But basically if you are running PHP5, you'll probably just want to use PHP's SoapClient and save yourself the hassle of using an external library