为什么使用 NuSOAP 而不是 PHP SOAP?有什么好处吗?

发布于 2024-08-31 02:24:52 字数 229 浏览 6 评论 0原文

就我在网络上搜索的情况而言,我可以看到大量关于如何设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尽揽少女心 2024-09-07 02:24:52

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.

那些过往 2024-09-07 02:24:52

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文