jax-ws 文档样式和 php 客户端
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用 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.