“便携式” JAX-WS客户端

发布于 2024-08-10 11:11:17 字数 204 浏览 12 评论 0原文

我部署了 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 技术交流群。

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

发布评论

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

评论(2

护你周全 2024-08-17 11:11:17

常见问题解答中对此进行了介绍JAX-WS:

问。如何动态更改请求的 Web 服务地址?

((BindingProvider)proxy).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "..."); 

This is covered in the FAQ of JAX-WS:

Q. How can I change the Web Service address dynamically for a request ?

((BindingProvider)proxy).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "..."); 
岁吢 2024-08-17 11:11:17

当然。查看 JBoss 示例。下面是相关的代码片段:

BindingProvider bp = (BindingProvider) port;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://your.wsdl.location");

通常会生成 WSDL,然后 WS 提供者会将相关 URL 插入到 WSDL 中。

Sure. Take a look at the JBoss example. Here's the relevant code snippet:

BindingProvider bp = (BindingProvider) port;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://your.wsdl.location");

Usually the WSDL is generated and therfore the WS provider inserts the relevant URLs into the WSDL.

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