使用 Java 调用 Web 服务

发布于 2024-12-14 20:24:37 字数 433 浏览 0 评论 0原文

我正在尝试使用 Java 调用在服务器内部定义的 Web 服务,并且我有该 Web 服务的 WSDL。我使用 Eclipse 中提供的 Web 服务客户端从 WSDL 生成存根和工件,就像本网站中的教程一样: http://px.pats.no/px/Eclipse_tutorial.html

我在网上做了一些研究,但我对一些事情感到困惑。

  1. 我如何实际使用生成的存根和工件来调用 Web 服务?
  2. 我还需要使用 Axis 或 JAX-WS 来调用 Web 服务吗?
  3. 我是否需要在调用 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.

  1. How do I actually use the stubs and artifacts generated to call the web service?
  2. Do I still need to use Axis or JAX-WS to call the web services?
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

戏蝶舞 2024-12-21 20:24:37

您可以通过两种方式用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.

狂之美人 2024-12-21 20:24:37

您好,您可以通过使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文