You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2011/07/27 02:54:40 UTC

DO NOT REPLY [Bug 51562] New: two key's value is mistake in "org/apache/catalina/connector/LocalStrings.properties"

https://issues.apache.org/bugzilla/show_bug.cgi?id=51562

             Bug #: 51562
           Summary: two key's value is mistake in
                    "org/apache/catalina/connector/LocalStrings.properties
                    "
           Product: Tomcat 7
           Version: 7.0.19
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Connectors
        AssignedTo: dev@tomcat.apache.org
        ReportedBy: gll_tomcat@yahoo.cn
    Classification: Unclassified


in the file "org/apache/catalina/connectorLocalStrings.properties" line 54&55

coyoteRequest.getInputStream.ise=getReader() has already been called for this
request
coyoteRequest.getReader.ise=getInputStream() has already been called for this
request

the key "coyoteRequest.getInputStream.ise" 's value should be "getInputStream()
has already been called for this request"
and 
the key "coyoteRequest.getReader.ise" 's value should be "getReader() has
already been called for this request"

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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


DO NOT REPLY [Bug 51562] two key's value is mistake in "org/apache/catalina/connector/LocalStrings.properties"

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=51562

--- Comment #2 from gu lilan <gl...@yahoo.cn> 2011-07-27 15:13:08 UTC ---
yes,i see ,thank you

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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


DO NOT REPLY [Bug 51562] two key's value is mistake in "org/apache/catalina/connector/LocalStrings.properties"

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=51562

Konstantin Kolinko <kn...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID

--- Comment #1 from Konstantin Kolinko <kn...@gmail.com> 2011-07-27 06:29:06 UTC ---
There is no mistake here.

You cannot call getInputStream() if you have already called getReader()
earlier, and vice versa. 

Thus the message used by getInputStream() method says about getReader, and the
one used by getReader() says about getInputStream.

See org/apache/catalina/connector/Request.java

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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