TCP Transport

This document will explain how to send and receive SOAP Messages via TCP in Axis2.

Send your feedback or questions to: axis-dev@ws.apache.org. Prefix subject with [Axis2]. To subscribe to mailing list see here.

Content

Introduction

Axis2 supports TCP as a transport. It has support for both send and receive SOAP Messages via TCP. TCP transport does not have any application level headers and the SOAP Message that is sent should be self contained. This makes the interaction fast and simple. However since there are no application headers, it does not have the privilege of having request URI, and Service dispatching should be done by an alternative method. Thus, RequestURIBasedDispatcher can not be used. Following are the two main alternatives available for dispatching in the Axis2 environment.

  1. Use the name space URI of the first child element of SOAPBody. (SOAPMessageBodyBasedDispatcher)
  2. Enable WS-Addressing. In the case of version 1.1 release Addressing is default (SOAPActionBasedDispatcher)

When the TCP request is sent it is the user's responsibility to use either Addressing or SOAP body base mechanism.

How to Start the TCPServer

The TCP server can be started by running the class org.apache.axis2.transport.tcp.TCPServer with two parameters - repository and port number, as arguments. This class needs all the Axis dependency jars in the classpath. New services can be added in the usual way by dropping the archives to the repository (See User's Guide for more information)

Alternatively the TCP Server can run with tcp-server.bat/ tcp-server.sh file in the bin directory of the Binary distribution of TCP Server.

How to Send SOAP Messages Using TCP Transport

TCP transport can be enabled easily from the call API. Following code segment demonstrate how it can be done.

OMElement payload = ...

ServiceClient serviceClient = new ServiceClient();
Options options = new Options();
options.setTo(targetEPR);
options.useSeperateListener(false);
serviceClient.setOptions(options);

OMElement response =
        serviceClient.sendReceive(payload);

The transport that should be invoked is inferred from the targetEPR (tcp://...). In this case it is TCP and the listener, also TCP . SOAP Message has to be self contained in order to use Addressing. The other option is to use the URI of the first child of the SOAP Body to dispatch the service. The Parameter is of the type OMElement, the XML representation of Axis2.

Sample

Sample for a TCP Client can be found from the samples/userguide/src/userguide/clients/TCPClient.java in the binary distribution. This accesses the same Web service explained in the Axis2 User's Guide. The client first starts the TCPServer with the same repository used for the Axis2 User's Guide samples. Since sample is already deployed in the repository while trying the userguide it will be automatically available.

Transport Components

Axis2 TCP transport has two components, a transport Listener for receiving the Messages and transport Sender to send the SOAP Messages. Axis2 installation has both the components built in to itself by default. In the axis2.xml configuration file the two TCP transport components would look as follows.

If the TCP server is started manually this configuration does not take effect. In return this effects the transport Listener's start by Axis2. (e.g. Listener started by the Complete Async interaction)

Following xml lines initializes the TCPTransport Receiver:

<transportReceiver name="tcp" class="org.apache.axis2.transport.tcp.TCPServer">
    <parameter name="port" locked="false">6060</parameter>
</transportReceiver>

Following xml lines adds the TCPTransport Sender:

<transportSender name="tcp" class="org.apache.axis2.transport.tcp.TCPTransportSender"/>