使用 JAX-WS for SOAP 的 WSDL 之外的信息?
我正在使用 JAX-WS 导出一些 SOAP Web 服务端点。
我知道我可以通过将 ?WSDL 附加到 Web 服务端点来访问 WSDL。 (就像 http://localhost:8888/web_service/test?WSDL
还有其他信息吗?可以通过将东西附加到 URL 来获取吗?
I am using JAX-WS to export some SOAP Web Service Endpoints.
I know I can access the WSDL by appending ?WSDL to the web service endpoint. (Like http://localhost:8888/web_service/test?WSDL
Is there any other information I can get by appending things to the URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看生成的 WSDL(如果您使用 @WebService 注释),您会发现可以找到带有“?xsd=1”的 XSD。
不过,我不知道这有多标准,也不知道是否存在可能具有与 1 不同的值的情况。
If you have a look at the generated WSDL (if you're using @WebService annotation) you can see that you can find the XSD with "?xsd=1".
I don't know how standard this is, though, and if there are cases where you could have different values than 1.