“便携式” JAX-WS客户端
我部署了 JAX-WS 服务并使用 wsimport 生成客户端代码。 因为我在 localhost 上运行 wsimport,所以我在“localhost”地址上获得了带有 binind 的客户端代码。
但我想在使用公共 IP 访问我部署的服务的其他计算机上重用这些客户端代码 yyyy 如何动态使用这些(一次)生成的客户端代码来访问我的服务。 (服务的ip可能会改变...)
I deployed a JAX-WS Service and use wsimport to generate client code.
Because I run wsimport on localhost, I got the client code with binind on "localhost" address.
But I want to reuse those client code on other computers which access my deployed service with a public IP y.y.y.y. How can dynamically use those (once) generated client code to access my service. (The ip of service may change...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
的常见问题解答中对此进行了介绍JAX-WS:
This is covered in the FAQ of JAX-WS:
当然。查看 JBoss 示例。下面是相关的代码片段:
通常会生成 WSDL,然后 WS 提供者会将相关 URL 插入到 WSDL 中。
Sure. Take a look at the JBoss example. Here's the relevant code snippet:
Usually the WSDL is generated and therfore the WS provider inserts the relevant URLs into the WSDL.