A Web Service Example: HelloServiceBean
This example demonstrates a simple web service that generates a response based on information received from the client.
HelloServiceBeanis a stateless session bean that implements a single method,sayHello. This method matches thesayHellomethod invoked by the client described in A Simple JAX-WS Client (page 503).The Web Service Endpoint Implementation Class
HelloServiceBeanis the endpoint implementation class. The endpoint implementation class is typically the primary programming artifact for enterprise bean web service endpoints. The web service endpoint implementation class has the following requirements:
- The class must be annotated with either the
javax.jws.WebServiceorjavax.jws.WebServiceProviderannotations.- The implementing class may explicitly reference an SEI through the
endpointInterfaceelement of the@WebServiceannotation, but is not required to do so. If no endpointInterface is not specified in@WebService, an SEI is implicitly defined for the implementing class.- The business methods of the implementing class must be public, and must not be declared
staticorfinal.- Business methods that are exposed to web service clients must be annotated with
javax.jws.WebMethod.- Business methods that are exposed to web service clients must have JAX-B-compatible parameters and return types. See Default Data Type Bindings (page 512).
- The implementing class must not be declared
finaland must not beabstract.- The implementing class must have a default public constructor.
- The endpoint class must be annotated
@Stateless.- The implementing class must not define the
finalizemethod.- The implementing class may use the
javax.annotation.PostConstructorjavax.annotation.PreDestroyannotations on its methods for lifecycle event callbacks.The
@PostConstructmethod is called by the container before the implementing class begins responding to web service clients.The
@PreDestroymethod is called by the container before the endpoint is removed from operation.Stateless Session Bean Implementation Class
The
HelloServiceBeanclass implements thesayHellomethod, which is annotated@WebMethod. The source code for theHelloServiceBeanclass follows:package com.sun.tutorial.javaee.ejb; import javax.ejb.Stateless; import javax.jws.WebMethod; import javax.jws.WebService; @Stateless @WebService public class HelloServiceBean { private String message = "Hello, "; public void HelloServiceBean() {} @WebMethod public String sayHello(String name) { return message + name + "."; } }Building and Packaging helloservice
In a terminal window, go to the
<INSTALL>/javaeetutorial5/examples/ejb/helloservice/directory. To buildhelloservice, type the following command:This runs the
defaulttask, which compiles the source files and packages the application into an JAR file located at<INSTALL>/examples/ejb/helloservice/dist/helloservice.jar.Deploying helloservice
Now that the Java EE application contains the enterprise bean deploy the
helloserviceapplication usingant:Upon deployment, the Application Server generates additional artifacts required for web service invocation, including the WSDL file.
Testing the Service Without a Client
The Application Server Admin Console allows you to test the methods of a web service endpoint. To test the
sayHellomethod ofHelloServiceBean, do the following:
- Open the Admin Console by opening the following URL in a web browser:
http://localhost:4848/- Enter the admin username and password to log in to the Admin Console.
- Click Web Services in the left pane of the Admin Console.
- Click
helloservice.- Click Test.
- Under Methods, enter a name as the parameter to the
sayHellomethod.- Click the
sayHellobutton.This will take you to the
sayHelloMethod invocation page.- Under Method returned, you'll see the response from the endpoint.