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 di...@apache.org on 2006/01/03 17:22:07 UTC

svn commit: r365674 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java

Author: dims
Date: Tue Jan  3 08:22:05 2006
New Revision: 365674

URL: http://svn.apache.org/viewcvs?rev=365674&view=rev
Log:
fix build break

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java?rev=365674&r1=365673&r2=365674&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java Tue Jan  3 08:22:05 2006
@@ -289,13 +289,13 @@
             // If the
             // transport is two way transport (e.g. http) Only one channel is
             // used (e.g. in http cases
-            // 202 OK is sent to say no repsone avalible). Axis2 get blocked
+            // 202 OK is sent to say no respsone avalible). Axis2 get blocked
             // return when the response is avalible.
             SyncCallBack callback = new SyncCallBack();
 
             // this method call two channel non blocking method to do the work
             // and wait on the callbck
-            sendReceiveNonblocking(elem, callback);
+            sendReceiveNonblocking(operation, elem, callback);
 
             long timeout = options.getTimeOutInMilliSeconds();