如何将 JAVAX-WS 端点绑定更改为 SOAP 1.2?
我正在使用 Endpoint.publish()
发布一个测试 WS 实现,以便在 Visual Studio 中使用。根据文档,默认的 SOAP 绑定是 1.1
并且它是可以更改绑定,但我无法具体弄清楚如何将绑定更改为 1.2
。
任何帮助表示赞赏!
I'm publishing a test WS implementation using Endpoint.publish()
for consumption in Visual Studio. According to the documentation the default SOAP binding is 1.1
and it is possible to change the bindings, but I can't figure out specifically how to change the binding to 1.2
.
Any help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 JAX-WS 2.x,您可以通过配置文件或 Java 5 注释启用 SOAP 1.2。请参阅 此处(原始版本,现已损坏链接)了解更多详细信息。
With JAX-WS 2.x you can either enable SOAP 1.2 via config file or via Java 5 annotation. See here (original, now broken link) for more details.
由于当前答案无效并且链接已损坏
按类注释
按代码配置
按 xml 配置
Since the current answer is not valid and the links are broken
By Class Annotation
By Code configuration
By xml configuration