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 sa...@apache.org on 2006/09/06 12:35:28 UTC

svn commit: r440680 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java

Author: saminda
Date: Wed Sep  6 03:35:27 2006
New Revision: 440680

URL: http://svn.apache.org/viewvc?view=rev&rev=440680
Log:
removed -1 from firstComma

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java?view=diff&rev=440680&r1=440679&r2=440680
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/transport/http/HTTPTransportUtils.java Wed Sep  6 03:35:27 2006
@@ -218,7 +218,7 @@
                             int firstComma = transientString.indexOf(";");
                             String soapAction; // This will contain "" in the string
                             if (firstComma > -1) {
-                                soapAction = transientString.substring(equal+1,firstComma-1);
+                                soapAction = transientString.substring(equal+1,firstComma);
 
                             } else {
                                 soapAction = transientString.substring(equal+1,transientString.length());



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org