Apache Axis2 User's Guide

This guide will help you get started with Axis2, the next generation of Apache Axis! It describes in details how to write Web services and Web service clients using Axis2; how to write custom modules and how to use them with a Web service. Advanced Topics and Samples which are shipped with the binary distribution of Axis2, are also discussed.

Content

Introduction

This User's Guide is written based on Axis2 standard binary distribution. The standard binary distribution can be directly downloaded or built using the standard source distribution. If you choose to go for the latter, then Installation Guide will instruct you on how to build Axis2 Standard Binary Distribution using the Source.

We hope you enjoy using Axis2. Please note that this is an open-source effort. If you feel the code could use some new features or fixes, please get involved and lend us a hand! The Axis developer community welcomes your participation.

Let us know what you think! Send your feedback on Axis2 to "axis-user@ws.apache.org". Make sure to prefix the subject of the mail with [Axis2].

Web Services Using Axis2

In this section, we will learn how to write and deploy Web services using Axis2. All the samples mentioned in this giude are located in the "samples\userguide\src" directory of Axis2 standard binary distribution.

Getting Started

Please deploy axis2.war in your servlet container and ensure that it works fine. Installation Guide gives you step by step instructions on just how to build axis2.war and deploy it in your servlet container.

Users can use either one of the following methods to write Web services using Axis2.

  1. Use Axis2's primary interfaces (APIs) and implement the business logic.
  2. Start from the WSDL -> Code generate the Skeleton -> Implement the Business Logic.

The complete code of the example Web service - MyService which will be used in this exercise is found in the "Axis2_HOME/samples/userguide/src" directory of Axis2 binary distribution, under "userguide/example1" package.

1. Writing Web Services Using Axis2's Primary APIs

In our example, the web service will have two operations.
public void ping(OMElement element){} //IN-ONLY operation, just accepts the OMElement and does some processing.
public OMElement echo(OMElement element){}//IN-OUT operation, accepts an OMElement and  
                                          // sends back the same again 

How to write a Web Service?

Writing a new Web service with Axis2 involves four steps:
  1. Write the Implementation Class

  2. Write a services.xml file to explain the Web service

  3. Create a *.aar archive (Axis Archive) for the Web service

  4. Deploy the Web service

Step1 :Write the Implementation Class

An implementation class has the business logic for the Web service and implements the operations provided by the Web service. Unless you have data binding, the signature of the methods can have only one parameter of type OMElement.

OMElement is .... For more details see OM Tutorial.

public class MyService{
    public void ping(OMElement element){
        // Business Logic     
        ......
    }
    public OMElement echo(OMElement element){
     ......
    }
}

Step2 :Write the services.xml file

"services.xml" has the configuration for a web Service. Each web service, deployed in Axis2 , must have its configuration in "services.xml". The configuration for MyService is as follows:

<service >
    <description>
        This is a sample Web service with two operations, echo and ping.
    </description>
    <parameter name="ServiceClass" locked="false">userguide.example1.MyService</parameter>
    <operation name="echo">
        <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
        <actionMapping>urn:echo</actionMapping>
    </operation>
     <operation name="ping">
        <messageReceiver class="org.apache.axis2.receivers.RawXMLINOnlyMessageReceiver"/>
        <actionMapping>urn:ping</actionMapping>
    </operation>
 </service>

The above XML tags can be explained as follows:

1. The description of the service class is provided in the description tag.

<service >
    <description>
        This is a sample Web service with two operations, echo and ping.
    </description>

2. The name of the service class is provided as a parameter.

<parameter name="serviceClass" locked="false">userguide.example1.MyService</parameter>

3. The "operation" xml tag describes the operations that are available in this service with respective message receivers.

   <operation name="echo">
            <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
            <actionMapping>urn:echo</actionMapping>
   </operation>
   <operation name="ping">
       <messageReceiver class="org.apache.axis2.receivers.RawXMLINOnlyMessageReceiver"/>
       <actionMapping>urn:ping</actionMapping>
   </operation>

4. Every operation must map to a corresponding MessageReceiver class. After a message is processed by the handlers, Axis2 engine hands it over to a MessageReceiver.

5. For the "echo" operation, we have used a RawXMLINOutMessageReceiver since it is an IN-OUT operation. For IN-ONLY operation "ping", we have used RawXMLINOnlyMessageReceiver as the message receiver.

6. The actionMapping is required only if you want to enable WS-Addressing. This will be used later in this user guide.

7. You can write a services.xml file to include a group of services instead of a single service. This makes management and deployment of a set of related services very easy. At runtime you can share information between these services within a single interaction using the ServiceGroupContext. If you hope to use this functionality, the services.xml file should have the following format.

<serviceGroup>
  <service name="Service1">
    <!-- details for Service1 -->
  </service>
  <service name="Service2">
    <!-- details for Service2 -->
  </service>
  <module ref="ModuleName" />
  <parameter name="serviceGroupParam1" locked="false">value 1</parameter>
</serviceGroup>

Note : name of the service is a compulsory attribute.

Step3 : Create the Web Service Archive

Axis2 uses ".aar" (Axis Archive) file as the deployment package for Web services. Therefore, for MyService we will use "MyService.aar" with the "services.xml" packaged in the META-INF in directory structure shown below. Please note that the name of the archive file will be same as that of the service only if the services.xml contains only one service element.

To create the archive file, you can create a jar file containing all the necessary files and then rename it to .aar file.This archive file can be found in the "Axis2_HOME/samples/userguide" directory. This file now has to be deployed.

Step4 : Deploy the Web Service

The service can be deployed by dropping dropping the ".aar" file in to "services" directory in "/webapps/axis2/WEB-INF" of your servlet container. Start the servlet container (if you have not already started) and check the link "Services" on the Home Page of Axis2 Web Application (http://localhost:8080/axis2) and see whether the MyService is deployed properly. If you can see the following output then you have successfully deployed MyService on Axis2. Congratulations !!

Note: Axis2 provides an easy way to deploy Web services using the "Upload Service" tool on Axis2 Web Application's Administration module. Please refer to the Web Administration Guide for more information.

2. Writing Web Services by Code Generating Skeleton

This is the second method of writing Web services using Axis2. In this method, we generate the skeleton from a given WSDL and implement the business logic in the classes generated. For this example, we will use Axis2SampleDocLit.wsdl. This can be found in the "samples\wsdl" directory of the binary distribution.

How to write a Web Service?

This method of writing a Web service with Axis2 involves five steps:
  1. Generate the skeleton code

  2. Add business logic

  3. Verify generated services.xml

  4. Create a *.aar archive (Axis Archive) for the Web service

  5. Deploy the Web service

Step1 : Generate Skeleton Code

To generate the skeleton and required classes, you can use the WSDL2Java tool provided in Axis2. This tool is located in the bin directory of the distribution and can be executed using the provided scripts (.bat or .sh). The tool's parameter list is as follows and users can specify these values depending on their requirements.

Usage WSDL2Code -uri <Location of WSDL> : WSDL file location
-o <output Location> : output file location
-a : Generate async style code only. Default is off
-s : Generate sync style code only. Default is off. takes precedence over -a
-p <package name> : set custom package name
-l <language> : valid languages are java and csharp. Default is java
-t : Generate TestCase to test the generated code
-ss : Generate server side code (i.e. skeletons). Default is off
-sd : Generate service descriptor (i.e. services.xml). Default is off. Valid with -ss
-d <databinding> : valid databinding(s) are adb, xmlbeans and jaxme. Default is adb
-g Generates all the classes. valid only with the -ss
-pn <port_name> : name of port in the presence of multiple ports
-sn <service_name> : name of service in the presence of multiple services
-u : unpacks the databinding classes
-r <repository_path> : path of the repository against which code is generated

The parameters for wsdl2java tool in our example are as follows:

Windows
WSDL2Java.bat -uri ..\samples\wsdl\Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ..\samples -p org.apache.axis2.userguide
Linux
WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide

This will generate the required classes in the "sample\src" directory, and the schema classes in "samples\resources\schemaorg_apache_xmlbeans" directory. Note that these are not source files and should be available in the class path in order to compile the generated classes.

Step 2: Implement Business Logic

Implement the business logic in the skeleton class. The skeleton class "Axis2SampleDocLitServiceSkeleton.java" can be found in "samples/src/org/apache/axis2/userguide" directory. Our sample WSDL-Axis2SampleDocLit.wsdl in "samples/wsdl" directory has three operations:

echoString

Locate the following code segment  in "Axis2SampleDocLitServiceSkeleton.java"  and add the business logic as shown below.

 public org.apache.axis2.userguide.xsd.EchoStringReturnDocument echoString
   (org.apache.axis2.userguide.xsd.EchoStringParamDocument param4 ){
      //Todo fill this with the necessary business logic
      throw new  java.lang.UnsupportedOperationException();
   }
 

Once the business logic is added, the source code appears as below:

public org.apache.axis2.userguide.xsd.EchoStringReturnDocument echoString
   (org.apache.axis2.userguide.xsd.EchoStringParamDocument param4) throws Exception {
   //Use the factory to create the output document.
   EchoStringReturnDocument retDoc = EchoStringReturnDocument.Factory.newInstance();
   //send the string back.
   retDoc.setEchoStringReturn(param4.getEchoStringParam());
   return retDoc;
 }

echoStringArray

The code segment for echoStringArray is shown below:

public org.apache.axis2.userguide.xsd.EchoStringArrayReturnDocument echoStringArray
   (org.apache.axis2.userguide.xsd.EchoStringArrayParamDocument param0) throws Exception {
   //Use the factory to create the output document.
   EchoStringArrayReturnDocument retDoc = EchoStringArrayReturnDocument.Factory.newInstance();
   //Get the String array from the input parameters.
   String[] inParams = param0.getEchoStringArrayParam().getStringArray();
   ArrayOfstringLiteral retParams = ArrayOfstringLiteral.Factory.newInstance();
   //Set the input parameters to the output parameters for echoing.
     for (int i = 0; i < inParams.length; i++) {
        retParams.addString(inParams[i]);
     }
   //return the output document.
   retDoc.setEchoStringArrayReturn(retParams);
   return retDoc;
}

echoStruct

The code segment for echoStruct is shown below:

public org.apache.axis2.userguide.xsd.EchoStructReturnDocument echoStruct
     (org.apache.axis2.userguide.xsd.EchoStructParamDocument param2) throws Exception {
     //Use the factory to create the output document.
     EchoStructReturnDocument retDoc = EchoStructReturnDocument.Factory.newInstance();

     //Get the SOAPStrcut from the incoming parameters
     SOAPStruct inStruct = param2.getEchoStructParam();

     //Struct for the sending back
     SOAPStruct outStruct = SOAPStruct.Factory.newInstance();

     //Fill the outgoing struct
     outStruct.setVarFloat(inStruct.getVarFloat());
     outStruct.setVarInt(inStruct.getVarInt());
     outStruct.setVarString(inStruct.getVarString());
     //Set the outgoing document.
     retDoc.setEchoStructReturn(outStruct);

     return retDoc;
}

Step3 : Verify Generated services.xml

As mentioned earlier, "services.xml" file holds all the configuration information for a Web service. When the skeleton is generated using the WSDL2Java tool, the services.xml file is also generated. This file can be found in the same directory as the skeleton. The generated services.xml is as follows.

<!-- This file was auto-generated from WSDL -->
<!-- by the Apache Axis2 version: #axisVersion# #today# -->
<serviceGroup>
  <service name="Axis2SampleDocLitService">
   <messageReceivers>
      <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" 
      class="org.apache.axis2.userguide.Axis2SampleDocLitServiceMessageReceiverInOut"/>
   </messageReceivers>
   <parameter locked="false" name="ServiceClass">
   org.apache.axis2.userguide.Axis2SampleDocLitServiceSkeleton</parameter>
   <operation name="echoStringArray" mep="http://www.w3.org/2004/08/wsdl/in-out">
      <actionMapping>echoStringArray</actionMapping>
   </operation>
   <operation name="echoStruct" mep="http://www.w3.org/2004/08/wsdl/in-out">
      <actionMapping>echoStruct</actionMapping>
   </operation>
   <operation name="echoString" mep="http://www.w3.org/2004/08/wsdl/in-out">
      <actionMapping>echoString</actionMapping>
   </operation>
  </service>
</serviceGroup>

1. First line of the "services.xml" gives the name of the Web service. This is used in the URL to the service as the service name.

2. Next comes the description and the service class.

3. The following xml tags describe the operations that are available in this service with respective message receivers.

Step 4: Create Archive File

The next step is to package the classes in an .aar (axis2 archive) and deploy it in Axis2. When the WSDL2Java tool generates the skeleton, it will also generate the required data binding classes. These schema related classes are located in the "samples\resources\schemaorg_apache_xmlbeans" directory of the generated code. Copy this to your class path, compile the skeleton and the supporting classes. To create the .aar file, create the following directory structure with the required files and then jar it up.

Go to the top level directory where you can find the class files for the above service (i.e. one level up on the directory structure shown above), then run the following on the command line

jar -cf Axis2SampleDocLitService.aar

Step 5: Deploy Web Service

The service can be deployed by dropping dropping the ".aar" file in to "services" directory in "/webapps/axis2/WEB-INF" of your servlet container.Start the servlet container (if you have not already started) and check the link "Services" on the Home Page of Axis2 Web Application (http://localhost:8080/axis2) and see whether the Axis2SampleDocLitService is deployed properly. If you can see the following output then you have successfully deployed Axis2SampleDocLitService on Axis2. Congratulations !!

Note: Axis2 provides an easy way to deploy Web Services using the "Upload Service" tool on Axis2 Web Application's Administration module. (See the Web Administration Guide for more information on this)

Web Service Clients Using Axis2

Let's see how we can write a Web service Client using Axis2 in order to use a Web service. All samples mentioned in this guide are located at the "samples\userguide\src" directory of the binary distribution. So let's get started!

Web services can be used to provide a wide-range of functionality to user from simple, less time consuming  operations such as "getStockQuote"  to time consuming business services. When we utilize (invoke using client applications) these Web services we cannot use simple generic invocation paradigms that suite all the timing complexities involved in the service operations. For example, if we use a single transport channel (such as HTTP) to invoke a Web service with an IN-OUT operation that takes a long time to complete, then most often we may end up with "connection time outs". On the other hand, if there are simultaneous service invocations that  we need to perform from a single client application, then the use of a "blocking" client API will degrade the performance of the client application. Similarly there are various other consequences such as One-Way transports that come in to play when we need them. Let's try to analyze some common service invocation paradigms.

Many Web service engines provide users with a Blocking and Non-Blocking client APIs.

Both these mechanisms work in the API level. Let's name the  asynchronous behavior that we can get using the Non-Blocking API as API Level Asynchrony.

Both these mechanisms use single transport connections to send the request and to receive the response. They severely lag the capability of using two transport connections for the request and the response (either One-Way or Two-Way). So both these mechanisms fail to address the problem of long running transactions (the transport connection may time-out before the operation completes). A possible solution would be to use two separate transport connections for request and response. The asynchronous behavior that we gain using this solution can be called Transport Level Asynchrony.

By combining API Level Asynchrony & Transport Level Asynchrony we can obtain four different invocation patterns for Web services as shown in the following table.

API (Blocking/Non-Blocking)

 Dual Transports (Yes/No)

Description

Blocking

No

The simplest and more familiar invocation pattern

Non-Blocking

No

Using callbacks or polling

Blocking

Yes

This is useful when the service operation is IN-OUT in nature but the transport used is One-Way (e.g. SMTP)

Non-Blocking

Yes

This is can be used to gain the maximum asynchronous behavior. Non blocking in the API level and also in the transport level

Axis2 provides the user with all these possibilities to invoke Web services.

Below we describe how to write Web services Clients using Axis2. This can be done in two methods:

  1. Using the Axis2's primary APIs
  2. Using stubs generated with data binding support, making life easier for developers writing Web service client applications

1. Writing Web Service Clients Using Axis2's Primary APIs

EchoBlockingClient

Axis2 provides the user with several invocation patterns for Web services, ranging from pure blocking single channel invocations to non-blocking dual channel invocations. Let's first see how we can write a client to invoke "echo" operation of "MyService" using the simplest blocking invocation. The client code you need to write is as follows.

  try {
            OMElement payload = ClientUtil.getEchoOMElement();
                        
            Options options = new Options();
            options.setTo(targetEPR); // this sets the location of MyService service
            
            ServiceClient serviceClient = new ServiceClient();
            serviceClient.setOptions(options);

            OMElement result = serviceClient.sendReceive(payload);
            
            System.out.println(result);

        } catch (AxisFault axisFault) {
            axisFault.printStackTrace();
        } 
}

1. The lines highlighted in green lines show the set of operations that you need to perform in order to invoke a Web service.

2. The rest is used to create the OMElement that needs to be sent and display the response OMElement.

To test this client, use the provided ant build file that can be found in the "Axis2_HOME/samples/userguide" directory. Run the "testEchoBlockingClient" target. If you can see the response OMElement printed in your command line,  then you have successfully tested the client.

PingClient

In the Web service "MyService" we had an IN-ONLY operation with the name "ping" (see Web Services Using Axis2). Let's write a client to invoke this operation. The client code is as follows:

 try {
       OMElement payload = ClientUtil.getPingOMElement();
       Options options = new Options();
       options.setTo(targetEPR);
       ServiceClient serviceClient = new ServiceClient();
       serviceClient.setOptions(options);
       serviceClient.fireAndForget(payload);
        /**
         * We have to block this thread untill we send the request , the problem
         * is if we go out of the main thread , then request wont send ,so
         * you have to wait some time :)
         */
       Thread.sleep(500);
     } 
catch (AxisFault axisFault) {
            axisFault.printStackTrace();
     }

Since we are accessing an IN-ONLY operation we can directly use the "fireAndForget()" in ServiceClient to invoke this operation. This will not block the invocation and will return the control immediately back to the client. You can test this client by running the target "testPingClient" of the ant build file at "Axis2Home/samples/userguide".

We have now invoked the two operations in our service. Are we done? No! There's a lot more to explore. Let's see some other ways to invoke the same operations.

EchoNonBlockingClient

In the EchoBlockingClient once the "serviceClient.sendReceive(payload);" is called, the client is blocked till the operation is complete. This behavior is not desirable when there are many Web service invocations to be done in a single client application or within a GUI. A solution would be to use a Non-Blocking API to invoke Web services. Axis2 provides a callback based non-blocking API for users.

A sample client for this can be found under "Axis2_HOME/samples/userguide/src/userguide/clients" with the name EchoNonBlockingClient. If we consider the changes that users may have to do with respect to the "EchoBlockingClient" that we have already seen, it will be as follows:

serviceClient.sendReceiveNonblocking(payload, callback);

The invocation accepts a callback object as a parameter. Axis2 client API provides an abstract Callback with the following methods:

public abstract void onComplete(AsyncResult result);
public abstract void onError(Exception e);
public boolean isComplete() {}

The user is expected to implement the "onComplete " and "onError " methods of their extended call back class. The Axis2 engine calls the onComplete method once the Web service response is received by the Axis2 Client API (ServiceClient). This will eliminate the blocking nature of the Web service invocation and provide users with the flexibility to use Non Blocking API for Web service Clients.

To run the sample client ( EchoNonBlockingClient) you can simply use the "testEchoNonBlockingClient" target of the ant file found at the "Axis2_HOME/samples" directory.

EchoNonBlockingDualClient

The solution provided by the Non-Blocking API has one limitation when it comes to Web service invocations which take a long time to complete. The limitation is due to the use of single transport connections to invoke the Web service and to retrieve the response. In other words, client API provides a non blocking invocation mechanism for users, but the request and the response come in a single transport (Two-Way transport) connection (like HTTP). Long running Web service invocations or Web service invocations using One-Way transports (like SMTP) cannot be utilized by simply using a non blocking invocation.

The trivial solution is to use separate transport connections (either One-Way or Two-Way) for the request and response. The next problem that needs to be solved is the correlation (correlating the request and the response). WS-Addressing provides a neat solution to this using <wsa:MessageID> and <wsa:RelatesTo> headers. Axis2 provides support for addressing  based correlation mechanism and a complying Client API to invoke Web services with two transport connections. (Core of Axis2 does not depend on WS-Addressing, but contains a set of parameters like in addressing that can be populated in any means. WS-Addressing is one of the uses that may populate them. Even the transports can populate these. Hence Axis2 has the flexibility to use different versions of addressing)

Users can select between Blocking or Non-Blocking APIs for the Web service clients with two transport connections. By simply using a boolean flag, the same API can be used to invoke Web services (IN-OUT operations) using two separate transport connections. Let's see how it's done using an example. Following code fragment shows how to invoke the same "echo" operation using Non-Blocking API with two transport connections. The ultimate asynchrony!!

  try {
            OMElement payload = ClientUtil.getEchoOMElement();

            Options options = new Options();
            options.setTo(targetEPR);
            options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
            options.setUseSeparateListener(true);
            options.setAction("urn:echo");  // this is the action mapping we put within the service.xml

            //Callback to handle the response
            Callback callback = new Callback() {
                public void onComplete(AsyncResult result) {
                    System.out.println(result.getResponseEnvelope());
                }

                public void onError(Exception e) {
                    e.printStackTrace();
                }
            };
            //Non-Blocking Invocation            
            sender = new ServiceClient();            
            sender.engageModule(new QName(Constants.MODULE_ADDRESSING));
            sender.setOptions(options);            
            sender.sendReceiveNonBlocking(payload, callback);            
            //Wait till the callback receives the response.            
            while (!callback.isComplete()) {                
             Thread.sleep(1000);            
            }            
            //Need to close the Client Side Listener.        
            } catch (AxisFault axisFault) {            
              axisFault.printStackTrace();
            } catch (Exception ex) {
              ex.printStackTrace();
            } finally {
            try {
                sender.finalizeInvoke();
            } catch (AxisFault axisFault) {
                //have to ignore this
            }
        }

The boolean flag (value true) in the "options.setUseSeparateListener(...)" method informs the Axis2 engine to use separate transport connections for request and response. Finally "service.finalizeInvoke()" informs the Axis2 engine to stop the client side listener started to retrieve the response.

Before we run the sample client we have one more step to perform. As mentioned earlier Axis2 uses addressing based correlation mechanism, hence we need to "engage" the addressing module in both client and server sides.

Engaging Addressing in the Server Side
According to the Axis2 architecture, addressing module put its handlers in the "pre-dispatch" phase (See Architecture Guide for more details on phases) and hence "engaging" means simply adding module reference in the "axis2.xml" (NOT the "services.xml"). Now add the following line to the "axis2.xml" that you can find in the "/webapps/axis2/WEB-INF/conf" directory in the servlet container.
 <module ref="addressing"/>

Note: Once you change the "axis2.xml" you need to restart the servlet container.

Engaging Addressing in the Client Side
There are two ways of doing this:
  1. One is to get the addressing-<version>.mar from modules folder of the standard binary distribution. And then making that available in your classpath.
  2. The second method is to create a ConfigurationContext giving a repository location. Axis2 has the concept of a repository to keep the services and modules.

You can use the extracted standard binary distribution itself as the repository as it contains the proper structure of an Axis2 repository (having the services and modules folders inside it). ConfigurationContext has the runtime context information of the Axis2 system.

If you have extracted the standard binary distribution to, say, $user_home/axis2/dist, then put the following line just before sender = new ServiceClient();

ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(< Axis2RepositoryLocation >, null);
Then replace "sender = new ServiceClient();" line with "sender = new ServiceClient(configContext, null);"

This will enable addressing in both client and server sides. Now you can test the "TestEchoNonBlockingDualClient" using the "testEchoNonBlockingDualClient" target of the ant file found at "Axis2_HOME/samples/userguide" directory. If you see the response OMElement printed in the client side, then you have successfully tested the Non Blocking API with two transport channels at the client side.

EchoBlockingDualClient

This is again a Two-Way transport request/response client, but this time, we use a Blocking API in the client code. Sample code for this can be found in the "Axis2_HOME/samples/userguide/src/userguide/clients/" directory and the explanation is similar to the EchoNonBlockingDualClient, except that here we do not use a callback object to handle the response. This is a very useful mechanism when the service invocation is IN-OUT in nature and the transports are One-Way (e.g. SMTP). For the sample client we use two HTTP connections for request and response. Users can test this client using the "echoBlockingDualClient" target of the ant build file found in the "Axis2_HOME/samples/userguide" directory.

See Configuring Transports for using different transports.

2. Writing Web Service Clients using Code Generation with Data Binding Support

Axis2 provides the data binding support for Web service clients as well. The user can generate the required stubs from a given WSDL with other supporting classes. Let's generate stubs for the WSDL used earlier to generate the skeleton for the "Axis2SampleDocLitService". Simply run the WSDL2Java tool that can be found in the bin directory of the Axis2 distribution using the following command:

Windows users can use the following command in the console:

WSDL2Java.bat -uri ..\samples\wsdl\Axis2SampleDocLit.wsdl -d xmlbeans -o ..\samples\src -p org.apache.axis2.userguide

Linux users should switch the file separator to:

WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -d xmlbeans -o ../samples/src -p org.apache.axis2.userguide

This will generate the required stub "Axis2SampleDocLitServiceStub.java" that can be used to invoke the Web service Axis2SampleDocLitService. Let's see how we can use this stub to write Web service clients to utilize the Web service Axis2SampleDocLitService (This is the service that we have already deployed).

Client for echoString Operation

The following code fragment shows the necessary code for utilizing the echoString operation of the Axis2SampleDocLitService that we have already deployed. The code is very simple to understand and the explanations are in the form of comments.

try {
     //Create the stub by passing the AXIS_HOME and target EPR.
     //We pass null to the AXIS_HOME and hence the stub will use the current directory as the AXIS_HOME 
     Axis2SampleDocLitPortTypeStub stub= new Axis2SampleDocLitPortTypeStub(null,
                                "http://localhost:8080/axis2/services/Axis2SampleDocLitService");
     //Create the request document to be sent.
     EchoStringParamDocument  reqDoc= EchoStringParamDocument.Factory.newInstance();
     reqDoc.setEchoStringParam("Axis2 Echo");
     //invokes the Web service.
     EchoStringReturnDocument resDoc=stub.echoString(reqDoc);
     System.out.println(resDoc.getEchoStringReturn());

    } catch (Exception e) {
        e.printStackTrace();
    }

Similarly the following code fragments show client side code for echoStringArray operation and echoStruct operation respectively.

Client for echoStringArray Operation

try {
     //Create the stub by passing the AXIS_HOME and target EPR.
     //We pass null to the AXIS_HOME and hence the stub will use the current directory as the AXIS_HOME
     Axis2SampleDocLitPortTypeStub stub = new Axis2SampleDocLitPortTypeStub(null,
                                "http://localhost:8080/axis2/services/Axis2SampleDocLitService");

     //Create the request document to be sent.
     EchoStringArrayParamDocument reqDoc = EchoStringArrayParamDocument.Factory.newInstance();
     ArrayOfstringLiteral paramArray = ArrayOfstringLiteral.Factory.newInstance();

     paramArray.addString("Axis2");
     paramArray.addString("Echo");

      reqDoc.setEchoStringArrayParam(paramArray);
      EchoStringArrayReturnDocument resDoc = stub.echoStringArray(reqDoc);

      //Get the response params
      String[] resParams = resDoc.getEchoStringArrayReturn().getStringArray();

      for (int i = 0; i < resParams.length; i++) {
           System.out.println(resParams[i]);
      }
      } catch (Exception e) {
        e.printStackTrace();
      }

Client for echoStruct Operation

try {
    //Create the stub by passing the AXIS_HOME and target EPR.
    //We pass null to the AXIS_HOME and hence the stub will use the current directory as the AXIS_HOME
    Axis2SampleDocLitPortTypeStub stub = new Axis2SampleDocLitPortTypeStub(null, 
                                "http://localhost:8080/axis2/services/Axis2SampleDocLitService");
    //Create the request Document
    EchoStructParamDocument reqDoc = EchoStructParamDocument.Factory.newInstance();

    //Create the complex type
    SOAPStruct reqStruct = SOAPStruct.Factory.newInstance();

    reqStruct.setVarFloat(100.50F);
    reqStruct.setVarInt(10);
    reqStruct.setVarString("High");

    reqDoc.setEchoStructParam(reqStruct);

    //Service invocation
    EchoStructReturnDocument resDoc = stub.echoStruct(reqDoc);
    SOAPStruct resStruct = resDoc.getEchoStructReturn();

    System.out.println("floot Value :" + resStruct.getVarFloat());
    System.out.println("int Value :" + resStruct.getVarInt());
    System.out.println("String Value :" + resStruct.getVarString());

} catch (Exception e) {
    e.printStackTrace();
}

Modules

Axis2 provides extended support for modules (See Architecture Guide for more details about modules in Axis2). Let's create a custom module and deploy it to MyService which we created earlier.

Following steps show the actions that need to be performed to deploy a custom module for a given Web service:

  1. Create the Module Implementation

  2. Create the Handlers

  3. Create the module.xml

  4. Modify the "axis2.xml" (if you need custom phases)

  5. Modify the "services.xml" to engage modules at the deployment time.

  6. Package in a ".mar" (Module Archive)

  7. Deploy the module in Axis2

MyService with a Logging Module

Let's write a simple logging module for our sample located at "samples\userguide\src" directory of the binary distribution. This module contains one handler that just logs the message that is passed through it. Axis2 uses ".mar" (Module Archive) to deploy modules in Axis2. Following diagram shows the file structure inside which needs to be there in the ".mar" archive. Let's create all these and see how it works.

Step1 : LoggingModule Class

LoggingModule is the implementation class of the Axis2 module. Axis2 modules should implement the "org.apache.axis2.modules.Module" interface with the following methods.

public void init(ConfigurationContext configContext, AxisModule module) throws AxisFault;//Initialize the module
public void shutdown(AxisConfiguration axisSystem) throws AxisFault;//End of module processing
public void engageNotify(AxisDescription axisDescription) throws AxisFault;

These methods can be used to control the module initialization and the termination. With the input parameter AxisConfiguration, the user is provided with the complete configuration hierarchy. This can be used to fine-tune the module behavior by the module writers. For the simple logging service we can keep these methods blank in our implementation class.

Step2 : LogHandler

A module in Axis2 can contain, one or more handlers that perform various SOAP header processing at different phases. (See Architecture Guide for more information on phases). To write a handler one should implement org.apache.axis2.engine.Handler. But for convenience, org.apache.axis2.handlers.AbstractHandler provides an abstract implementation of the Handler interface.

For the logging module we will write a handler with the following methods. "public void invoke(MessageContext ctx);" is the method that is called by Axis2 engine when the control is passed to the handler. "public void revoke(MessageContext ctx);" is called when the handlers are revoked by the Axis2 engine.

public class LogHandler extends AbstractHandler implements Handler {
    private Log log = LogFactory.getLog(getClass());
    private QName name;

    public QName getName() {
        return name;
    }

    public void invoke(MessageContext msgContext) throws AxisFault {
        log.info(msgContext.getEnvelope().toString());
    }

    public void setName(QName name) {
        this.name = name;
    }
}

Step3 : module.xml

"module.xml" contains the deployment configurations for a particular module. It contains details such as Implementation class of the module (in this example it is the "LoggingModule" class and various handlers that will run in different phases). "module.xml" for the logging module will be as follows:

<module name="logging" class="userguide.loggingmodule.LoggingModule ">
   <inflow>
        <handler name="InFlowLogHandler" class="userguide.loggingmodule.LogHandler">
        <order phase="loggingPhase" />
        </handler>
   </inflow>

   <outflow>
        <handler name="OutFlowLogHandler" class="userguide.loggingmodule.LogHandler">
        <order phase="loggingPhase"/>
        </handler>
   </outflow>

   <Outfaultflow>
        <handler name="FaultOutFlowLogHandler" class="userguide.loggingmodule.LogHandler">
        <order phase="loggingPhase"/>
        </handler>
   </Outfaultflow>

   <INfaultflow>
        <handler name="FaultInFlowLogHandler" class="userguide.loggingmodule.LogHandler">
        <order phase="loggingPhase"/>
        </handler>
   </INfaultflow>
</module>

As you can see there are four flows defined in this "module.xml"

  1. inflow - Represents the handler chain that will run when a message is coming in.
  2. outflow - Represents the handler chain that will run when the message is going out.

  3. Outfaultflow - Represents the handler chain that will run when there is a fault and the fault is going out

  4. INfaultflow - Represents the handler chain that will run when there is a fault and the fault is coming in

Following set of tags describe the name of the handler, handler class and the phase in which this handler is going to run. "InFlowLogHandler" is the name given for the particular instance of this handler class. The value of class attribute is the actual implementation class for this handler. Since we are writing logging handler, we can reuse the same handler in all these phases. However this may not be the same for all the modules. "<order phase="loggingPhase" />" describes the phase in which this handler runs.

<handler name="InFlowLogHandler" class="userguide.loggingmodule.LogHandler">
<order phase="loggingPhase" />
</handler>

To learn more about Phase rules, check out the article Axis2 Execution Framework

Step 4: Modify the "axis2.xml"

In this handler, the phase "loggingPhase", is defined by the module writer. It is not a pre-defined handler phase, hence the module writer should introduce it to the "axis2.xml" (NOT the services.xml) so that the Axis2 engine knows where to place the handler in different "flows" ( inFlow, outFlow, etc.). Following xml lines show the respective changes made to the "axis2.xml" in order to deploy this logging module in the Axis2 engine. This is an extract of the phase section of "axis2.xml".

<!-- ================================================= -->
<!-- Phases -->
<!-- ================================================= -->

<phaseOrder type="inflow">
        <!--  System pre defined phases       -->
        <phase name="TransportIn"/>
        <phase name="PreDispatch"/>
        <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase">
            <handler name="AddressingBasedDispatcher"
                     class="org.apache.axis2.engine.AddressingBasedDispatcher">
                <order phase="Dispatch"/>
            </handler>

            <handler name="RequestURIBasedDispatcher"
                     class="org.apache.axis2.engine.RequestURIBasedDispatcher">
                <order phase="Dispatch"/>
            </handler>

            <handler name="SOAPActionBasedDispatcher"
                     class="org.apache.axis2.engine.SOAPActionBasedDispatcher">
                <order phase="Dispatch"/>
            </handler>

            <handler name="SOAPMessageBodyBasedDispatcher"
                     class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher">
                <order phase="Dispatch"/>
            </handler>
            <handler name="InstanceDispatcher"
                     class="org.apache.axis2.engine.InstanceDispatcher">
                <order phase="PostDispatch"/>
            </handler>
        </phase>
        <!--  System pre defined phases       -->
        <!--   After Postdispatch phase module author or service author can add any phase he wants      -->
        <phase name="OperationInPhase"/>
        <phase name="loggingPhase"/>
    </phaseOrder>
    <phaseOrder type="outflow">
        <!--      user can add his own phases to this area  -->
        <phase name="OperationOutPhase"/>
        <phase name="loggingPhase"/>
        <!--system predefined phases-->
        <!--these phases will run irrespective of the service-->
        <phase name="PolicyDetermination"/>
        <phase name="MessageOut"/>
    </phaseOrder/>
    <phaseOrder type="INfaultflow">
        <!--      user can add his own phases to this area  -->
        <phase name="OperationInFaultPhase"/>
        <phase name="loggingPhase"/>
    </phaseOrder>
    <phaseOrder type="Outfaultflow">
        <!--      user can add his own phases to this area  -->
        <phase name="OperationOutFaultPhase"/>
        <phase name="loggingPhase"/>
        <phase name="PolicyDetermination"/>
        <phase name="MessageOut"/>
    </phaseOrder>
    

The text in green, the custom phase "loggingPhase" is placed in all the flows, hence that phase will be called in all the message flows in the engine. Since our module is associated with this phase, the LogHandler inside the module will now be executed in this phase.

Step5 : Modify the "services.xml"

Up to this point we have created the required classes and configuration descriptions for the logging module and by changing the "axis2.xml" we have created the required phases for the logging module.

Next step is to "engage" (use) this module in one of our services. For this, let's use the same Web service that we have used throughout the user's guide- MyService. However, since we need to modify the "services.xml" of MyService in order to engage this module, we use a separate Web service, but with the similar operations.

The code for this service can be found in the "Axis2_HOME/samples/userguide/src/userguide/example2" directory. The simple changes that we have done to "services.xml' are shown in green in the following lines of xml.

<service name="MyServiceWithModule">
    <description>
    This is a sample Web service with a logging module engaged.
    </description>
    <module ref="logging"/>
    <parameter name="ServiceClass" locked="xsd:false">userguide.example2.MyService</parameter>
    <operation name="echo">
    <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
    </operation>
    <operation name="ping">
    <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
    </operation>
</service>

In this example we have changed the service name (the implementation class is very similar to what we have used earlier although it is in a different package). In addition we have added the line "<module ref="logging"/>" to "services.xml". This informs the Axis2 engine that the module "logging" should be engaged for this service. The handler inside the module will be executed in their respective phases as described by the "module.xml".

Step6 : Packaging

Before deploying the module we need to create the ".mar" file for this module. This can be done, using the "jar" command and then renaming the created jar file. Or you can find the "logging.mar" that is already created for you in the "Axis2_HOME/samples/userguide" directory.

Step7 : Deploy the Module in Axis2

Deploying a module in Axis2 require the user to create a directory with the name "modules" in the "webapps/axis2/WEB-INF" directory of their servlet container and then copying the ".mar" file to that directory. So let's first create the "modules" directory and drop the "logging.mar" in to this directory.

Although the required changes to the "services.xml" is very little, we have created a separate service archive (MyServiceWithModule.aar) for users to deploy and see.

Deploy this service using the same steps that you used to deploy "MyService" and copy the "logging.mar" file to the "modules" directory.

Then run using the "TestWebServiceWithModuleClient.bat" or "TestWebServiceWithModuleClient.sh" in the "Axis2Home/samples/userguide/src/userguide/clients/bin" directory.

Note: To see logs, the user needs to modify the "log4j.properties" to log INFO. The property file is located in "webapps/axis2/WEB-INF/classes" of your servlet container. Change the line "log4j.rootCategory= ERROR, LOGFILE" to "log4j.rootCategory=INFO, ERROR, LOGFILE".

Other Samples

To show the power of usage of Axis2, three standard samples are shipped with the standard binary distribution. These are meant to interact with outside Web services and prove the capabilities of the Axis2 system.

The included samples are

A simple introduction to each of the above samples are given below. Each sample contains it's own help document that speaks about  the usage and the advanced operations of that particular sample.

The most obvious place to look for the samples are the standard binary distribution. All these samples are included in the samples directory in the binary distribution. The shell scripts and the batch files are in fact written to use the binary distribution's root directory as the home in order to find the libraries.

The alternate method is to build the samples from standard source distribution. Moving to the "Axis2_HOME/modules/samples" of the source distribution and running maven will create the samples in the "Axis2_HOME/target/samples" directory. However, if the samples need to be started using the shell scripts (or the batch files) then the Axis2_HOME environment need to be set.( the "guessed" Axis2_HOME would not be correct in this case)

Google Spell Checker Sample

This includes a spell checker program that uses the Google spell checking service. It demonstrates the blocking and non-blocking modes of calling the service. This sample can be found at the "Axis2_HOME/samples/googleSpellcheck" directory in the Axis2 standard binary distribution and can be easily started using either the batch file or the shell script.

Google Search Sample

This includes a search program that uses the familiar Google search over the SOAP API. It utilizes the non-blocking mode of the client API. This sample can be found at "Axis2_HOME/samples/googleSearch" directory of the standard binary distribution and can be easily started using either the batch file or the shell script.

Amazon Queuing Service

Amazon queuing service sample shows how to use the Amazon queuing service. It has two user interfaces, one to enqueue and the other to dequeue. This sample is included in "Axis2_HOME/samples/amazonQS" directory of the standard binary distribution with the required batch/shell scripts to run the sample.

Advanced Topics