Connecting to SOAP API using Java and Axis2

Use Java and Axis 2 sample code and language details here to connect your Java development environment to SOAP API.

Axis2 is a SOAP client preferred by many Java users.

The Java SDK is also available. It uses Java CXF.

In order to use the configuration in this document, you must use the following tools:

  • Axis2 Libraries
  • Rampart Module (use as authentication module)
  • Ant build files to generate stubs and compile code

The instructions in this document refer to Axis2 version 1.6.0.

You can use the connection to the SOAP API to test your calls and perform various tasks, such as sending email and retrieving tracking information.

  1. Download Apache Axis2
  2. Follow the appropriate instructions at that site to install the service on your computer.
  3. Use the sample code below to authenticate your installation and exchange information with the SOAP API servers.

Keep these steps in mind when connecting to the API via Axis2:

  • When generating Axis2 stubs, use XML-Beans as the databinding option.
    et_axis2-1.jpg

  • Generated files create the resources folder with .class and .xsb files, these files should be in class-path to successfully run and execute API calls.
    et_axis2-2.jpg

  • Enter your authentication information in the ETClient.java file.

  • Enter the location of your log file in the log4j.properties file.

  • Enter your project's base directory location in the build2.xml file.

  • Enter the following information in your props.xml before compiling, building, and running your jar file:

    • Entry key authentication information
    • Repository folder location
    • Location for your axis2-client.xml file

et_axis2-3.jpg

In that .zip file, theETClient.java file sample file has both a Retrieve and a Create method. Use thePropertiesUtil.java file to read properties from the props.xml file located in class-path. Use thePWCBHandler.java file to define the password handler class; this file is required by Axis2engine to handle authentication. Conduct the build using the Ant file and it generates the ETClient.jar file. The command Java -jar ETClient.jar executes the ETClient.java file.

Follow these steps if the password is always being passed as Digest format.

  1. For theAxis2.xml passwordType node value, define the value as "PasswordText".
  2. Ensure that the class paths contain only one Axis configuration.
  3. Ensure that you have installed the most recent Axis2 library on the machine.

Use the Eclipse development environment to aid your connection to and efforts working with SOAP API. This environment includes all the necessary information to use Axis2 Java with the SOAP API. Find more information about the Eclipse development environment here. This link does not imply any preference or endorsement of the Eclipse development environment. This information is presented only as an example and aid for your development efforts.

You can use a single props.xml file to manage multiple username/password credentials (for production and test accounts, for example):

  1. Copy the Axis2-Client.xml file in the provided example.

  2. Rename the copy to Axis2-Client-Test.xml.

  3. Add the provided key/value pair to theprops.xml file:

    • Key: axis2FileTest
    • Value: axis2-client-test.xml
  4. Edit the user tag for the Axis2-Client.xml file:

    • production
  5. Edit the user tag for the Axis2-Client-Test.xml file:

    • test
  6. Add the provided key/value pair to the props.xml file to provide the credentials for the test environment:

    • key: username-test
    • value: (your test environment username)
    • key: password-test
    • value: (your test environment password)

Change the handle method in the PWCBHandler.java file:

Specify whether the call uses the test or production configuration when instantiating ConfigurationContext prior to the request: