You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ru...@apache.org on 2006/01/10 16:55:54 UTC

svn commit: r367661 - in /webservices/axis2/trunk/java/xdocs/0_94: tcp-transport.html userguide.html

Author: ruchithf
Date: Tue Jan 10 07:55:48 2006
New Revision: 367661

URL: http://svn.apache.org/viewcvs?rev=367661&view=rev
Log:
s/reportError/onError and fixed typos

Modified:
    webservices/axis2/trunk/java/xdocs/0_94/tcp-transport.html
    webservices/axis2/trunk/java/xdocs/0_94/userguide.html

Modified: webservices/axis2/trunk/java/xdocs/0_94/tcp-transport.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/0_94/tcp-transport.html?rev=367661&r1=367660&r2=367661&view=diff
==============================================================================
--- webservices/axis2/trunk/java/xdocs/0_94/tcp-transport.html (original)
+++ webservices/axis2/trunk/java/xdocs/0_94/tcp-transport.html Tue Jan 10 07:55:48 2006
@@ -71,9 +71,9 @@
 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
-automatically avaliable.</p>
+automatically available.</p>
 
-<h2>ansport Topics</h2>
+<h2>Transport Components</h2>
 
 <p>Axis2 TCP transport has two components, a transport Listener for receiving
 the Messages and transport Sender to send the SOAP Messages. Axis2

Modified: webservices/axis2/trunk/java/xdocs/0_94/userguide.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/0_94/userguide.html?rev=367661&r1=367660&r2=367661&view=diff
==============================================================================
--- webservices/axis2/trunk/java/xdocs/0_94/userguide.html (original)
+++ webservices/axis2/trunk/java/xdocs/0_94/userguide.html Tue Jan 10 07:55:48 2006
@@ -877,7 +877,7 @@
 public abstract void onError(Exception e);
 public boolean isComplete() {}</pre>
 
-<p>The user is expected to implement the "onComplete " and "reportError "
+<p>The user is expected to implement the "onComplete " and "onError "
 methods of their extended call back class. 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
@@ -943,7 +943,7 @@
                         System.out.println(writer.toString());
 
                     } catch (XMLStreamException e) {
-                        reportError(e);
+                        onError(e);
                     }
                 }