maven、wsgen 和动态 url

发布于 2024-09-15 08:39:14 字数 292 浏览 2 评论 0原文

实施此处描述的测试解决方案后:

使用Maven触发wsgen &使用 wsdlLocation 连续 wsimport

我想知道是否有一种方法可以在不知道 WS URL 的情况下生成客户端 jar,这样它就可以用于部署在其他地方的任何类似的 ws。

有什么想法吗?

After implementing a test solution described here :

Use Maven to trigger a wsgen & wsimport in a row, using wsdlLocation

I wonder if there is a way to generate the client jar without knowing the WS URL, so that it would be usable against any similar ws deployed somewhere else.

Any idea?

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

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

发布评论

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

评论(1

绿萝 2024-09-22 08:39:14

我想知道是否有一种方法可以在不知道 WS URL 的情况下生成客户端 jar,以便它可用于部署在其他地方的任何类似的 ws。

无论使用什么 WSDL URI 来生成 JAX-WS 客户端工件,您都可以使用适当的构造函数从客户端代码覆盖服务端点地址:

...
URL newEndpoint = new URL("http://new/endpointaddress?wsdl");
QName serviceName = new QName("http://targetNamespaceURI","EchoService"); 

EchoService service = new EchoService(newEndpoint, serviceName);
Echo port = service.getEchoPort();

System.out.println("Server said: " + echo.echo(args[0]));
...

相关问题

另请参阅

I wonder if there is a way to generate the client jar without knowing the WS URL, so that it would be usable against any similar ws deployed somewhere else.

Whatever WSDL URI has been used to generate the JAX-WS client artifacts, you can override a service endpoint address from the client code by using the appropriate constructor:

...
URL newEndpoint = new URL("http://new/endpointaddress?wsdl");
QName serviceName = new QName("http://targetNamespaceURI","EchoService"); 

EchoService service = new EchoService(newEndpoint, serviceName);
Echo port = service.getEchoPort();

System.out.println("Server said: " + echo.echo(args[0]));
...

Related question

See also

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