如何在java中通过https web服务发布xml
我如何将 xml 发布到 https web 服务并获取 xml 响应... 要求是这样的..
Web 服务接受参数有效负载,我们可以在其中传递 xml,并且我将获得响应 xml。
网址如下所示: https://servername/aaa/bbb/us/ws.do?
how can i post xml to https web service and get the xml in response...
the requirement is this..
The web service accepts a parameter payload in which we can pass xml and i will be getting response xml.
the url looks like this:
https://servername/aaa/bbb/us/ws.do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
获取 Web 服务定义 (WSDL) 并使用 wsdl2java 客户端为 WSDL 生成 java 客户端。使用生成的客户端代码调用 Web 服务。您选择的 Web 服务框架将负责为您构建和解析 SOAP 请求/响应。示例,请参考 Apache Axis
Get the webservice definition (WSDL) and use a wsdl2java client to generate java client for the WSDL. Use the generated client code to invoke the webservice. Webservice framework that you choose will take care of constructing and parsing SOAP request/response for you. Example , refer Apache Axis
获取 Web 服务的 WSDL,并将其用于您的工具。 Eclipse Java EE 中的 Web Service Explorer 是一个不错的起点。
Get the WSDL for the web service, and use it for your tooling. A good place to start is the Web Service Explorer in Eclipse Java EE.