`

从Eclipse里面打开WebService Explorer

 
阅读更多

打开 Web Services Explorer

The Web services tools allows you to launch the Web Services Explorer in several ways.

  • From the main toolbar in the Java EE perspective.
  • By using the Web service wizards.
  • By using the Import wizard.
  • By using the Export wizard.
  • From the Run menu in the Java EE perspective.
  • From a WSDL file.
  • Launching the Web Services Explorer from the main toolbar

To launch the Web Services Explorer from the main toolbar, ensure that you are in the Java EE perspective and click the Launch the Web Services Explorer icon Picture of the Launch Web Services Explorer icon.. The Web Services Explorer opens without any registries displayed in the Navigator pane. You can now add a registry to the Web Services Explorer.

To launch the Web Services Explorer from the Web Services Wizard, select the Test the Web Service check box in the first page of the Web Services Wizard. Proceed with the wizard and then in the Web Service Test Page, choose Web Services Explorer as the test facility and click on the Launch button. If you launch the Web Services Explorer using this method, it will automatically preload the WSDL (and its child nodes) in the WSDL page.

 

Launching the Web Services Explorer using the Import wizard

To launch the Web Services Explorer using the Import wizard, do the following:

  1. From the main menu, click File > Import. The Import wizard opens.
  2. Select Web Service and click Next. The Web service import wizard opens.
  3. Click Finish.

The Web Services Explorer opens. If you selected a registry on the Web Service Publication page of the Web service Import wizard, you will see the registry displayed in the Navigator pane.

 

Launching the Web Services Explorer using the Export wizard

To launch the Web Services Explorer using the Export wizard, do the following:

  1. From the main menu, click File > Export. The Export wizard opens.
  2. Select Web Service and click Next. The Web Service Export wizard opens.
  3. Click Finish. The Web Services Explorer opens.

The Web Services Explorer opens.  If you selected a registry on the Web Service Publication page of the Web Service Export wizard, you will see the registry displayed in the Navigator pane.

 

Launching the Web Services Explorer from the Run menu

To launch the Web Services Explorer from the main menu, ensure that you are in the Java EE perspective and click Run > Launch the Web Services Explorer. The Import wizard opens. The Web Services Explorer opens.  The Web Services Explorer opens without any registries displayed in the Navigator pane.

 

Launching the Web Services Explorer from a WSDL file

To launch the Web Services Explorer from a WSDL file, select the WSDL file and right-click and choose Web Services > Test with Web Services Explorer or Publish WSDL file.  The Web Services Explorer opens. The Test with Web Services Explorer action will preload the WSDL in the WSDL page.

分享到:
评论

相关推荐

    eclipse自带webservice调试工具介绍

    1. **启动WebService Explorer**:在Eclipse中,通过“Window”菜单下的“Show View”选项,找到并打开“WebService Explorer”。 - **界面概览**:打开后的界面通常分为几个部分,包括顶部的工具栏、中间的WSDL...

    Eclipse下WebService学习.doc

    为了验证发布的函数是否正常工作,可以使用Eclipse的内置`WebService Explorer`工具。在`Test.wsdl`上右键选择“Test with WebService Explorer”,然后在操作列表中选择要测试的方法(如`mean`),输入参数并执行...

    eclipse下创建webService服务

    Eclipse会自动为你创建一个测试客户端,可以在"Web Services Explorer"视图中找到。在这里,你可以调用你的服务并查看返回结果。同时,你还可以使用WSDL URL在其他应用中调用这个服务。 8. **发布和消费Web ...

    Eclipse下WebService学习

    在Eclipse中,可以通过右键点击`Test.wsdl`文件,选择WebService > Test with WebService Explorer来启动测试界面。在Operations下选择需要测试的方法(如`mean`),输入参数并执行。如果结果符合预期,说明服务已...

    WebService二——使用Eclipse开发WebService及各种调用方式

    可以使用Eclipse内置的Web Services Explorer或者像SOAPUI这样的工具进行测试。在SOAP请求中,需要包含服务的WSDL地址,以及调用的方法名和参数。 2. **RESTful风格调用**:REST(Representational State Transfer...

    使用Myeclipse 创建WebService 项目服务端

    为了验证Web服务是否成功部署,可以在MyEclipse的"Web Services Explorer"视图中测试服务。也可以手动使用SOAP客户端工具,如SoapUI,通过指定的WSDL地址(通常在`web/WEB-INF/wsdl`目录下)进行调用。 在提供的...

    Eclipse通过工具来监控webService请求和返回时的数据

    - 使用WsExplorer,首先在Eclipse的Java EE视图中打开Web Service Explorer,输入Web服务的URL,然后查看和操作服务的方法,发送请求并查看返回的XML响应。 - 使用Tcp/IP Monitor,需要在Eclipse中打开这个视图,...

    Eclipse根据wsdl文件逆向生成webservice客户端项目源码

    在Eclipse集成开发环境中,我们可以使用"Web Service Explorer"或"New Web Service Client"向导来根据WSDL文件生成客户端代码。以下是步骤: 1. **导入WSDL文件**:在Eclipse中,选择“File” > “Import” > “Web...

    eclipse+tomcat+axis2创建webservice

    在Eclipse中验证安装成功,可以在Package Explorer中尝试创建新的Axis2服务。 5. **创建Web服务** - **编写Java服务类**:例如`SimpleServer`类,包含一个简单的`simpleMethod`方法,接收一个字符串并返回处理后的...

    webservice 开发过程 详解

    - 在Eclipse中打开`WebService Explorer`,找到刚刚发布的`sayHello`方法。 - 在`username`参数中输入测试数据,例如“China”,然后点击`Go`。 - 观察`Status`栏中的返回结果,如果显示`Hello: China`,则表示服务...

    WebService

    - 打开 WebService Explorer; - 输入 WebService 的 WSDL URL; - 调用服务中的方法并查看结果。 #### 七、总结 通过本篇文档的学习,你可以了解如何在 Java 平台上使用 MyEclipse 和 XFire 实现基本的 ...

    webService入门教程_java_webservice_

    6. **测试WebServices**:使用Eclipse的Web Services Explorer或者其他的SOAP客户端工具(如SoapUI),可以发送请求并接收服务的响应,从而验证服务的功能和正确性。 7. **安全性考虑**:WebServices的安全性是关键...

    JAVA调用WEBSERVICE图解说明

    - Eclipse提供了方便的工具,如WSDL Editor和Web Service Explorer,可以帮助测试和调试WebService。 - 在Web Service Explorer中,可以直接输入参数调用服务,查看返回结果,这对于开发和调试非常有帮助。 6. ...

    webservice简单实例

    - 在 Eclipse 中打开 Package Explorer 视图,完成插件安装。 ##### 4. 发布 WebService 发布 WebService 可以通过两种方式进行: - **aar 文件方式:** - 使用 `jar` 命令或 Eclipse 插件创建 `.aar` 文件。 ...

    Axis2与Eclipse整合开发的Web Service的服务端

    【标题】:Axis2与Eclipse整合开发的Web Service服务端详解 【描述】:本文将详细介绍如何在Eclipse环境中利用Axis2框架开发一个Web Service服务端,包括计算器服务CalculateService的实现步骤。 【标签】:Axis2,...

    webService简单示例及开发文档

    同时,服务的管理和监控也是必要的,例如,使用Eclipse的Web Service Explorer测试服务,或者使用WS-I(Web Services Interoperability)工具确保跨平台的互操作性。 总结,"webService简单示例及开发文档"旨在引导...

    MyEclipse开发WebService实例详解

    此外,还可以使用Eclipse的Web服务视图(Web Services Explorer)进行服务的测试和调用。 综上所述,MyEclipse为开发WebService提供了全面的工具集,从创建项目到生成客户端代码,再到调试和优化,都提供了直观的...

    MyEclipse10上使用WebService的源码

    1. **创建WebService**:使用MyEclipse的Web Service Explorer,可以选择创建一个新服务或导入现有服务。服务通常由一个或多个Java方法组成,这些方法可以通过SOAP消息调用。 2. **定义WSDL**:WSDL(Web Services ...

Global site tag (gtag.js) - Google Analytics