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 "Davanum Srinivas (JIRA)" <ji...@apache.org> on 2007/06/22 18:09:25 UTC

[jira] Resolved: (AXIS2-2573) processHTTPPOSTRequest() does not correctly handle the case where HTTP request header SOAPAction is empty

     [ https://issues.apache.org/jira/browse/AXIS2-2573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas resolved AXIS2-2573.
-------------------------------------

    Resolution: Fixed

> processHTTPPOSTRequest()  does not correctly handle the case where HTTP request header SOAPAction is empty 
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-2573
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2573
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.2, 1.1.1
>         Environment: All
>            Reporter: Charles McElrea
>            Assignee: Keith Godwin Chapman
>
> In HTTPTransportUtils there is a method called processHTTPPOSTRequest(). It correctly handles the case where the HTTP request header element SOAPAction is set to :"some URI" and the case where SOAPAction:"", but does not handle the case where SOAPAction: <empty>.  Specifically line, 183 of  this module:
> if ((soapActionHeader != null) && soapActionHeader.charAt(0) == '\"'
>                 && soapActionHeader.endsWith("\"")) {
>                 soapActionHeader = soapActionHeader.substring(1, soapActionHeader.length() - 1);
>             }
> will generate the following exception message "StringIndexOutOfBoundsException: String index out of range: 0", since soapActionHeader is not null but is of zero length.
> FYI -  This problem can be fixed with the following code which insures that the header has at least 2 characters before using the charAt() function.
> if ((soapActionHeader != null) && (soapActionHeader.length() > 1))  {
>             	
>         if (soapActionHeader.charAt(0) == '\"'  && soapActionHeader.endsWith("\""))  {
>             soapActionHeader = soapActionHeader.substring(1, soapActionHeader.length() - 1);
>          }
>   }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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