jax-ws 文档样式和 php 客户端

发布于 2024-11-13 11:17:36 字数 472 浏览 5 评论 0原文

我使用 jax-ws 创建了 WebService Endpoint。我想连接它从 php 客户端调用它。 Php客户端没什么大不了的,用SoapClient类写的。 当我使用 RPC 风格时,一切工作正常。 @SOAPBinding(style = Style.RPC, use=Use.LITERAL)

但我的目标是使用文档样式,当我将方法签名更改为 @SOAPBinding(style = Style.DOCUMENT, use=Use.LITERAL)

我没有收到任何输入参数。 Web 服务被正确调用,但参数所有参数均为空。我想知道这是否是 PHP 客户端的问题或 JAX-WS 端点上的错误配置。 我使用这个(http://www.mkyong.com/webservices/jax-ws/jax-ws-hello-world-example-document-style/)教程来使JAX-WS enpoint。 说实话,犯错的事情不多,所以我认为这可能是 php 的问题。

I created WebService Endpoint using jax-ws. I would like to connect it call it from php client. Php client is not big deal, wrote with SoapClient class.
Everything works fine when im using RPC style.
@SOAPBinding(style = Style.RPC, use=Use.LITERAL)

But my goal is to use Document style and when i'll change method signature to
@SOAPBinding(style = Style.DOCUMENT, use=Use.LITERAL)

im not receiving any input parameters. Web Service is called properly but params all params are null. Im wondering if this is problem of PHP client or bad configuration on JAX-WS endpoint.
I as using this (http://www.mkyong.com/webservices/jax-ws/jax-ws-hello-world-example-document-style/) tutorial to make JAX-WS enpoint.
To be honest not much thing to make something wrong, so i think it can be something with php.

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

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

发布评论

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

评论(1

呆头 2024-11-20 11:17:36

用 Java 创建一个简单的客户端,使用一些 ide 功能或命令行 wsinport 来生成客户端,如果它能正常工作,那么问题就出在客户端上。

Create a simple client in Java, use some ide functionalities or command line wsinport, to generate the client, if it will work correctly than the problem is with the client.

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