PHP Soap 服务器在不同计算机上运行缓慢

发布于 2024-12-13 13:27:06 字数 99 浏览 0 评论 0原文

肥皂服务器在不同的计算机和网络上运行缓慢的原因是什么?对我来说它工作得很好,但对于不同网络中的其他人来说它非常慢,就像几分钟一样。

有什么理由吗?

谢谢

Any reason why a soap server can be slow on different computers and networks? For me its working very good but for other people in different networks is very slow, like minutes.

Any reason for that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

街角迷惘 2024-12-20 13:27:06

我很少在 PHP 中使用 SOAP 内容,因此我能想到的唯一 PHP 配置就是缓存:

ini_set("soap.wsdl_cache_enabled", 1);

或者查看参数:

SoapClient::SoapClient($wsdl, $options)
SoapServer::SoapServer($wsdl, $options)

否则可能是 PHP 领域之外的网络问题或配置以及 stackoverflow 问题。

I don't use the SOAP stuff much with PHP, so the only PHP configuration thing I can think of is caching:

ini_set("soap.wsdl_cache_enabled", 1);

Or see the parameters to:

SoapClient::SoapClient($wsdl, $options)
SoapServer::SoapServer($wsdl, $options)

Otherwise it's likely to be networking issues or configuration outside the realm of PHP and a stackoverflow question.

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