You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2006/04/27 11:26:51 UTC

svn commit: r397487 - /webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html

Author: chatra
Date: Thu Apr 27 02:26:47 2006
New Revision: 397487

URL: http://svn.apache.org/viewcvs?rev=397487&view=rev
Log:
upgraded tcp-transport.html doc

Modified:
    webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html

Modified: webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html?rev=397487&r1=397486&r2=397487&view=diff
==============================================================================
--- webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html (original)
+++ webservices/axis2/trunk/java/xdocs/latest/tcp-transport.html Thu Apr 27 02:26:47 2006
@@ -9,14 +9,21 @@
 
 <body lang="en">
 <h1>TCP Transport</h1>
+This document will explain how to send and receive SOAP Messages via TCP in
+Axis2. Sample with be used for more clarity
+
+<p><i>Send your feedback or questions to: <a
+href="mailto:axis-dev@ws.apache.org">axis-dev@ws.apache.org</a></i>. Prefix
+subject with [Axis2]. To subscribe to mailing list see <a
+href="http://ws.apache.org/axis2/mail-lists.html">here.</a></p>
 
 <h2>Content</h2>
 <ul>
   <li><a href="#intro">Introduction</a></li>
   <li><a href="#start">How to Start the TCPServer</a></li>
   <li><a href="#send">How to Send SOAP Messages Using TCP Transport</a></li>
- <li><a href="#samples">Samples</a></li>
-  <li><a href="#components">Transport Components </a></li>
+  <li><a href="#samples">Samples</a></li>
+  <li><a href="#components">Transport Components</a></li>
 </ul>
 <a name="intro"></a>
 
@@ -45,10 +52,10 @@
 
 <p>The TCP server can be started by running the class
 org.apache.axis2.transport.tcp.TCPServer with two parameters <a
-href="faq.html#b5">repository</a> and port number as argument. This class
+href="../faq.html#c5">repository</a> and port number as argument. 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 repository (See <a
-href="userguide.html">User Guide</a> for more information)</p>
+href="userguide.html">User's Guide</a> for more information)</p>
 
 <p>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.</p>
@@ -74,7 +81,7 @@
 has to be self contained in order to use addressing. Only other option one
 can think of is to use the URI of the first child of the SOAP Body to
 dispatch the service. The Parameter is of the type <a
-href="faq.html#a2">OMElement</a>, the XML representation of Axis2.</p>
+href="../faq.html#a2">OMElement</a>, the XML representation of Axis2.</p>
 <a name="sample"></a>
 
 <h2>Sample</h2>
@@ -82,10 +89,10 @@
 <p>Sample for a TCP Client can be found from the
 samples/userguide/src/userguide/clients/TCPClient.java in the binary
 distribution. This access the same web service explained in the <a
-href="userguide.html">Axis2 userguide</a>. The client first starts the
+href="userguide.html">Axis2 User's Guide</a>. The client first starts the
 TCPServer with the same repository used for the <a
-href="userguide.html#samples">Axis2 userguide samples</a>. Since sample is
-already deployed in the repository while trying the userguide it will be
+href="userguide.html">Axis2 User's Guide</a> samples. Since sample is already
+deployed in the repository while trying the userguide it will be
 automatically available.</p>
 <a name="components"></a>