WSDL + PHP + Java(SOAP)

发布于 2024-12-03 12:09:23 字数 325 浏览 2 评论 0原文

我正在使用 Java 和 Php。我使用 WSDL2PHP 工具生成 php-stubs,通过 WSDL 调用 Java 服务。 到目前为止一切正常。我已经向我的 java 服务添加了一个新方法并重新生成了 php-stub。在 php-stub 中,该方法可用,但是当我调用该服务时,我收到以下错误:

SoapFault: Function ("myFunction") is not a valid method for this service

我已经尝试了很多,并且用谷歌搜索了很多,并且它以前工作过。我在同一服务中的旧方法始终是可调用的,并且我可以运行它们

I am working with Java and Php. I'm calling the Java services via WSDLs from what i generate php-stubs with the tool WSDL2PHP.
Everything works fine until now. I've added a new method to my java service and re-generated the php-stub. In the php-stub the method is available but when i call the service i'm getting the following error:

SoapFault: Function ("myFunction") is not a valid method for this service

I've tried a lot and googled a lot, and it worked before. My old methods in the same service are always callable and i can run them bu

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

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

发布评论

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

评论(1

烏雲後面有陽光 2024-12-10 12:09:23

这是因为 SOAPClient 缓存了您的 WSDL 文件。您可以使用以下方法禁用此功能:

soap.wsdl_cache_enabled = "0"; 

请注意,这会影响性能。但在你的开发机器上这不会影响事情。

It's because the SOAPClient caches your WSDL files. You can disable this feature using:

soap.wsdl_cache_enabled = "0"; 

Beware, this has a performance impact. But on your development machine this wont affect things.

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