使用 Java 调用 Web 服务
我正在尝试使用 Java 调用在服务器内部定义的 Web 服务,并且我有该 Web 服务的 WSDL。我使用 Eclipse 中提供的 Web 服务客户端从 WSDL 生成存根和工件,就像本网站中的教程一样: http://px.pats.no/px/Eclipse_tutorial.html
我在网上做了一些研究,但我对一些事情感到困惑。
- 我如何实际使用生成的存根和工件来调用 Web 服务?
- 我还需要使用 Axis 或 JAX-WS 来调用 Web 服务吗?
- 我是否需要在调用 Web 服务或 SOAPUI 请求中显示的 SOAP 信封时涉及 SOAP?
预先感谢您的任何帮助。
I am trying to call a web service that is defined inside a server by using Java and I have the WSDL of the web service. I used Web Service Client which is provided in Eclipse to generate the stubs and artifacts from the WSDL as how the tutorial in this website: http://px.pats.no/px/Eclipse_tutorial.html
I have done some research over the Net but I am confused with a few things.
- How do I actually use the stubs and artifacts generated to call the web service?
- Do I still need to use Axis or JAX-WS to call the web services?
- Do I need to involve SOAP in calling the web service or the SOAP envelope as show in the soapUI request?
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过两种方式用java调用Web服务:JAX RPC和JSP 109
希望您能获得详细信息此处。
You can call a web service with java in two ways: JAX RPC and JSP 109
I hope you can get detailed information here.
您好,您可以通过使用 WSDL2JAVA 命令基于 WSDL 创建存根和骨架来调用 Web 服务。创建存根和骨架后,您需要在新服务操作(.java 类)中创建存根对象,一旦获得该对象,您将获得 WSDL 中公开的所有子 setter 方法
Hi You can call web service by creating stub and skeleton based on WSDL you have using WSDL2JAVA command. Once stub and skeleton will get created you need to create object of stub in your new service operation(.java class) and once you get the object you will get all child setter methods exposed in WSDL