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

Difference between revisions of "Using Web Service Explorer to test a Web service"

Line 34: Line 34:
  
  
<P>4)  In the Web Service Explorer's toolbar (top-right), click on the WSDL Page  icon,
+
<P>4)  In the Web Service Explorer's toolbar (top-right), click on the WSDL Page  icon <BR>
  
  

Revision as of 18:51, 25 January 2008

 

By Trung Ha
Jan 30, 2008


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 1.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 " Delayed Stock Quote " 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:

Xsdeditor-figure1.JPG


4) In the Web Service Explorer's toolbar (top-right), click on the WSDL Page icon
5) Click on the WSDL Main icon. Result:


Editing the schema is achieved by invoking context menu actions on selected objects in the Graph view and using the properties view to modify the properties of the selected object. Go back to the top-level view and follow the steps below to create a new element declaration and define its content.

  1. right click on the header of the 'Elements' section of the top level schema and choose 'Add Element'
  2. use the properties view to change the name of the element to 'Paper' Xsdeditor-figure3.JPG


  3. right click on Paper and select 'Set Type'->'New..." to create a new type for the element.
    Xsdeditor-figure4.JPG


  4. select 'Complex Type' and check 'Create as anonymous type'. Click 'OK'.
    Xsdeditor-figure5.JPG


  5. Double click on 'Paper' to explore this element, note that 'PaperType' is surrounded by parenthesis to indicate anonymity of this type. Click on this type to invoke the properties sheet for its.

  6. On the Properties sheet, select the 'Inherit From:' combo and then select 'Browse...' as shown below. Xsdeditor-figure6.JPG


  7. The Set Type dialog will appear. Select 'PublicationType', and click OK.
    Xsdeditor-figure7.JPG


  8. Double click on Paper's type to edit its structure as shown below. Then right click on the '(PaperType)' and select 'Add Element'
    Xsdeditor-figure8.JPG


  9. Name the newly added element 'URL' because, say, the paper is found on the web.
    Xsdeditor-figure9.JPG


  10. The type of URL can be changed in the main editor panel by clicking on its current type 'string'. A combo box will be shown as below (For now we don't change the the type of URL yet)
    Xsdeditor-figure10.JPG


  11. Right click on '(PaperType)', select 'Add Element Ref' to create element reference. Initally, the editor will pick a random element to be referred. In this case, it's 'Book' as shown below.
    Xsdeditor-figure11.JPG


  12. We can change the element to be referred to in the main editor panel by click on 'Book'. A Combo will be shown as below.
    Xsdeditor-figure12.JPG


  13. Now that we've finished editing the XML Schema you can save the file.

Back to the top