DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29108>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29108

"chunked" transfer-encoding is not working

           Summary: "chunked" transfer-encoding is not working
           Product: Tomcat 5
           Version: 5.0.24
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: Connector:HTTP
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


I am running Tomcat 5.0.24 on an IBM's z/os machine. IE fails to show most of 
my jsp pages (Netscape works in this case). Note that all my jsp pages are 
using UTF8 encoding and at least one jsp:include tag.

After some investigation, I find out that 
org.apache.coyote.http11.filters.ChunkedOutputFilter.java is causing the 
problem. It uses getBytes() without specifing any encoding to generate 
END_CHUNK.

                END_CHUNK.setBytes(endChunkValue.getBytes(), 
                               0, endChunkValue.length());

In my case, z/os uses EBCDIC to encode END_CHUNK. Since my jsp pages are using 
UTF8 encoding, IE fails to detech the "last chunks" of my jsp pages.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to