如何从 Java 中的 WS SOAP 服务获取响应?
我需要创建一个应用程序来从该服务 http://www.mcds 获取 xml 响应。 co.il/YouTube/ChanelApi.asmx 没有额外的库,但我不知道该怎么做。请帮我
I need to create an app for getting xml response from this service http://www.mcds.co.il/YouTube/ChanelApi.asmx without additional libraries, but I don't know how can I do it. Please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 apache 的 Axis 生成 SOAP 客户端代码,请参阅“使用网络服务”部分。明确查看正在发生的情况的最佳方法是使用 Axis 附带的 WSDL2Java 工具来生成客户端存根。这将为您构建一个 SOAP 客户端,您可以查看模型对象并开始针对它们进行开发。
WSDL2Java 将 WSDL URL 作为输入,并为该 WSDL 生成 java 客户端。
You can use apache's Axis to generate SOAP client code, see the "Consuming a web service" section. The best way to see explicitly what is happening is to use the WSDL2Java tool that ships with Axis, to generate client stubs. This will build a SOAP client for you, and you can take a look at the model objects and start to develop against them.
WSDL2Java takes a WSDL URL as an input, and generates a java client for that WSDL.