Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Using Web Service Explorer to test a Web service

Revision as of 20:28, 31 January 2008 by Trungha.ca.ibm.com (Talk | contribs)

Using Web Service Explorer to test a Web service

Wtplogosmall.png

By Kathy Chan
December 22, 2005

Introduction

This document is one of a series of tutorials to demonstrate the use of the Web Services tools in the Web Tools Platform Project using a WTP 2.0 driver.

This tutorial shows how to use the Web Service Explorer to test a Web service via native WSDL and SOAP. It demonstrates how to use the Web Services Explorer to invoke operations on a Web service named " Romulan Numbers XLII " as available from XMethods on the internet.

The only prerequisite is that you be connected to the internet. If you are connected via a firewall, you can use the Internet preferences page (choose Preferences -> Internet from the main menu). Otherwise, you can begin with a completely fresh workspace and no installed servers.

Using the Web Services Explorer to test a Web service

  1. Launch the Eclipse WTP workbench.
  2. From the main menu bar, select Run -> Launch the Web Services Explorer. This will take a few moments the first time while Eclipse's internal Tomcat server starts up and loads the Web Services Explorer application.
  3. After the Web Browser view opens, maximize it. Result:
    Wse uddi.JPG
  4. In the Web Service Explorer's toolbar (top-right), click on the WSDL Page icon,
    Wsdl.jpg
  5. Click on the Wsdl main.gif WSDL Main icon. Result:
    Wse wsdl.JPG
  6. In the WSDL URL field, enter the URL http://www.ebob42.com/cgi-bin/Romulan.exe/wsdl/IRoman , then click on Go . Result:
    Wse romanConvert.JPG
  7. Under Operations in the right hand pane, click on IntToRoman. Result:
    Wse romanConvertIntToRoman.JPG
  8. In the Int int entry field, enter 9, then click on Go . In the Status pane, you should see an answer like this:
    return (String) IX

Note:
A key point of the scenario above is that no code was generated and no servers were required in order to invoke operations on the WSDL

Back to the top