Axis Developer's Guide

Alpha 3 Version

Table of Contents

Introduction
General Guidelines
Development Environment
Logging/Tracing
Compile and Run
Internationalization
Adding Testcases
Debugging
 

Introduction

This guide is a collection of topics related to developing code for Axis.

General Guidelines

Development Environment

The following packages are required for axis development:


The axis jar files are built in the xml-axis/java/build/lib directory.   Here is an example CLASSPATH, which I use when developing code:

D:\\xerces\\xerces-1_4_2\\xerces.jar
G:\\junit3.7\\junit.jar
G:\\xml-axis\\java\\build\\lib\\wsdl4j.jar
G:\\xml-axis\\java\\build\\lib\\axis.jar
G:\\xml-axis\\java\\build\\lib\\log4j-core.jar
G:\\xml-axis\\java\\build\\classes
If you access the internet via a proxy server, you'll need to set an environment variable so that the Axis tests do the same. Set ANT_OPTS to, for example:
-Dhttp.proxyHost=proxy.somewhere.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts="localhost"

Logging/Tracing

AXIS logging and tracing is based on the Logging component of the Jakarta Commons project, or the Jakarta Commons Logging (JCL) SPI. The JCL provides a Log interface with thin-wrapper implementations for other logging tools, including Log4J, Avalon LogKit, and JDK 1.4. The interface maps closely to Log4J and LogKit.

Using the Logger SPI

To use the JCL SPI from a Java class, include the following import statements:

For each class definition, declare and initialize a log attribute as follows:

Messages are logged to a logger, such as log by invoking a method corresponding to priority: The Log interface defines the following methods for use in writing log/trace messages to the log:

While semantics for these methods are ultimately defined by the implementation of the Log interface, it is expected that the severity of messages is ordered as shown in the above list.

In addition to the logging methods, the following are provided:

These are typically used to guard code that only needs to execute in support of logging, and that introduces undesirable runtime overhead in the general case (logging disabled).

Guidelines

Message Priorities

It is important to ensure that log message are appropriate in content and severity. The following guidelines are suggested:

Configuring the Logger

The Jakarta Commons Logging (JCL) SPI can be configured to use different logging toolkits. To configure which logger is used by the JCL, see the AXIS System Integration Guide.

Configuration of the behavior of the JCL ultimately depends upon the logging toolkit being used. The JCL SPI (and hence AXIS) uses Log4J by default if it is available (in the CLASSPATH).

Log4J

As Log4J is the prefered/default logger for AXIS, a few details are presented herein to get the developer going.

Configure Log4J using system properties and/or a properties file:

Compile and Run

The xml-axis/java/build.xml file is the primary 'make' file used by ant to build the application and run the tests.  The build.xml file defines ant build targets.  Read the build.xml file for more information.  Here are some of the useful targets:
  To compile the source code:
cd xml-axis/java
ant compile
To run the tests:
cd xml-axis/java
ant functional-tests
Note: these tests start a server on port 8080. If this clashes with the port used by your web application server (such as Tomcat), you'll need to change one of the ports or stop your web application server when running the tests.

Please run ant functional-tests and ant all-tests before checking in new code.

Internationalization

If you make changes to the source code that results in the generation of text (error messages or debug information), you must follow the following guidelines to ensure that your text is properly translated.
 
  1. Your text string should be added as a property to the resource.properties file (xml-axis/java/src/org/apache/axis/utils/resource.properties).  Note that some of the utility applications (i.e. tcpmon) have their own resource property files (tcpmon.properties).

  2.  
  3. The resource.properties file contains translation and usage instructions.  Here is an example message:

  4.  

     
     
     
     
     

    sample00=My name is {0}, and my title is {1}.
     

    1. sample00 is the key that the code will use to access this message.
    2. The text after the = is the message text.
    3. The {number} syntax defines the location for inserts.

    4.  
  5. The code should use the static method org.apache.axis.utils.JavaUtils.getMessage method to obtain the text and add inserts.  Here is an example usage:

  6.  

     
     
     
     
     

    JavaUtils.getMessage("sample00", "Rich Scheuerle", "Software Developer");
     

  7. All keys in the properties file should use the syntax <string><2-digit-suffix>.

  8.  
    1. Never change the message text in the properties file. The message may be used in multiple places in the code.  Plus translation is only done on new keys.

    2.  
    3. If a code change requires a change to a message, create a new entry with an incremented 2-digit suffix.

    4.  
    5. All new entries should be placed at the bottom of the file to ease translation.

Adding Testcases

Editor's Note: We need more effort to streamline and simplify the addition of tests.  We also need to think about categorizing tests as the test bucket grows.
 

If you make changes to Axis, please add a test that uses your change.  Why?


Some general principles:


One way to build a test is to "cut and paste" and existing tests, and then modify the test to suit your needs.  This approach is becoming more complicated as the different kinds of tests grow.

Creating a WSDL Test

Here are the steps that I used to create the sequence test, which generates code from a wsdl file and runs a sequence validation test:
 
  1. Created a xml-axis/java/test/wsdl/sequence directory.

  2.  
  3. Created a SequenceTest.wsdl file defining the webservice.

  4.  
  5. Ran the Wsdl2java emitter to create java files:

  6.  

    java org.apache.axis.wsdl.Wsdl2java -t -s SequenceTest.wsdl
     

    1. The -t option causes the emitter to generate a *TestCase.java file that hooks into the test harness. This file is operational without any additional changes.  Copy the *TestCase.java file into the same directory as your wsdl file.  (Ideally only the java files that are changed need to be in your directory.  So this file is not needed, but please make sure to modify your <wsdl2java ...> clause (described below) to emit a testcase.
    2. The -s option causes the emitter to generate a *SOAPBindingImpl.java file.  The java file contains empty methods for the service.  You probably want to fill them in with your own logic.  Copy the *SOAPBindingImpl.java file into the same directory as your wsdl file.  (If no changes are needed in the java file, you don't need to save it.  But you will need to make sure that your <wsdl2java ...> clause generates a skeleton).
    3. Remove all of the java files that don't require modification.  So you should have three files in your directory (wsdl file, *TestCase.java, and *SOAPBindingImpl.java).  My sequence test has an another file due to some additional logic that I needed.

     
  7. The test/build_functional_tests.xml file controls the building of the tests.  Locate the "wsdl-setup" target.  You will see a clause that runs the Wsdl2java code:

  8.  

    <ant antfile="test/wsdl/Wsdl2javaTestSuite.xml"/>

    Following this clause you will see some clauses that copy java files from the test directories.  If you have additional files, you may need to copy them over.  Examine the clause that I added to copy over SequenceInfo.java.
     

  9. Now go to the test/wsdl/Wsdl2javaTestSuite.xml file.  This file contains the clauses to run wsdl2java.  Add a wsdl2java clause.  Here is the one for SequenceTest:

  10.  

        <!-- Sequence Test -->
        <wsdl2java url="test/wsdl/sequence/SequenceTest.wsdl"
                   output="build/work"
                   deployscope="session"
                   skeleton="yes"
                   messagecontext="no"
                   noimports="no"
                   verbose="no"
                   testcase="no">
            <mapping namespace="urn:SequenceTest2" package="test.wsdl.sequence"/>
        </wsdl2java>
     

  11. Done.  Run ant functional-tests to verify.  Check in your test.

  12.  

Debugging

Using tcpmon to Monitor Functional Tests.

Here is an easy way to monitor the messages while running functional-tests (or all-tests).
Start up tcpmon listening on 8080 and forwarding to a different port:

java org.apache.axis.utils.tcpmon 8080 localhost 8011
Run your tests, but use the forwarded port for the SimpleAxisServer, and indicate that functional-tests should continue if a failure occurs.
ant functional-tests -Dtest.functional.SimpleAxisPort=8011 -Dtest.functional.fail=no
The SOAP messages for all of the tests should appear in the tcpmon window.

tcpmon is described in more detail in the AXIS User's Guide.

Running a Single Functional Test

In one window start the server:
java org.apache.axis.transport.http.SimpleAxisServer -p 8080
In another window, first deploy the service you're testing:
java org.apache.axis.client.AdminClient deploy.wsdd
Then bring up the JUnit user interface with your test. For example, to run the the multithread test case:
java junit.swingui.TestRunner -noloading test.wsdl.multithread.MultithreadTestCase

Turning on Debug Output

This section is oriented to the AXIS default logger: Log4J. For additional information on Log4J, see the section Configuring the Logger.

Writing Temporary Output

Remember that AXIS is targetted for use in a number of open-source and other web applications, and so it needs to be a good citizen. Writing output using System.out.println or System.err.println should be avoided.

Developers may be tempted to use System.out.println while debugging or analyzing a system. If you choose to do this, you will need to disable the util/TestSrcContent test, which enforces avoidance of System.out.println and System.err.println. It follows that you will need to remove your statements before checking the code back in.

As an alternative, we strongly encourage you to take a few moments and introduce debug statements: log.debug("reasonably terse and meaningful message"). If a debug message is useful for understanding a problem now, it may be useful again in the future to you or a peer.