Creating Top Down Web Service
Creating Top Down Web Service
 

By Kathy Chan
November 23, 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 the WTP 1.0 M9 drivers.

 

This tutorial shows how to create a simple top-down Web service from a WSDL file. The WSDL file in this scenario calculates the area of an rectangle.

 
Set Up
 
 

Before creating the Web service, there are two prerequisites:

 
  1. Install Apache Tomcat
  2. Create a dynamic Web project called AreaProj .
Create a top down Java bean Web service
 
  1. Import the file AreaService.wsdl into AreaProj/WebContent.
  2. Select the AreaService.wsdl file.
  3. Open File -> New -> Other... -> Web Services -> Web Service.
  4. Click Next
  5. In the Web service type combo, select Top down Java bean Web Service .
  6. Select Overwrite files without warning . Result:


  7. Click Next . Result:


  8. Click Next to get to the Service Deployment Configuration Page . Result:


  9. If you want to choose a server different from the one defaulted by the wizard, click the Edit button to: select a server
  10. Click Finish.
  11. It will take about one minute for the wizard to assemble the Web service projects, start Apache Tomcat and deploy the projects to Tomcat. Once finished, the Java implementation file AreaServiceSOAPImpl.java will appear in the browser view. Fill in the expression parameters.getHeight()*parameters.getWidth() as the return value for the calculateRectArea method and save the file.

 

Follow the instructions at Creating Web Service Client to create a Web service client that you can then use to test this Web service.