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

nadir amra closed AXISCPP-1036.
-------------------------------

    Resolution: Invalid

The code has been rewritten, so check with was is in SVN. 

However, I will say since the code is processing HTTP headers, searching for LF 
is valid since it does signify end of line. So it should really not make a 
difference.

> In HTTPTransport, CRLF is the http head separator
> -------------------------------------------------
>
>                 Key: AXISCPP-1036
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-1036
>             Project: Axis-C++
>          Issue Type: Bug
>          Components: Transport (axis3)
>    Affects Versions:  1.6 Beta
>            Reporter: gaolijun
>
> In the following cpp file.
> HTTPTransport.cpp
> void HTTPTransport::processHTTPHeader()
> {
> // At this point the HTTP header has been found.  It now needs to be 
> processed.
>  int iPosContentLength = m_strReceived.find( ASCII_S_CONTENT_LENGTH);
>  if( iPosContentLength != std::string::npos)
>  {
>   int iEOL = m_strReceived.find( ASCII_S_LF, iPosContentLength);
> //Comment
> //In http head,the format is--name: valueCRLF
>                       is not--name: valueLF
> //So I feel,in the cpp file, every valueLF should be replaced by valueCRLF;

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to