HelloWorld.jws Sample

This topic inludes the source code for the HelloWorld.jws Sample.

Sample Location

This sample is located in the following directory in your WebLogic Workshop installation:

BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/tagSamples/netui_databinding/callControl/

Sample Source Code


01 package tagSamples.netui_databinding.callControl; 
02 
03 public class HelloWorld implements com.bea.jws.WebService
04 
05     static final long serialVersionUID = 1L;
06 
07     /**
08      * @common:operation
09      */
10     public String hello()
11     {
12         return "Hello, World!";
13     }
14