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 bu...@apache.org on 2002/08/07 17:37:09 UTC

DO NOT REPLY [Bug 11532] New: - Out of Memory Error

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11532

Out of Memory Error

           Summary: Out of Memory Error
           Product: Axis
           Version: beta-3
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Basic Architecture
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: rkimbrell@northropgrumman.com


An out of memory error occurs at org.apache.catalina.core.ApplicationFilterChain.\
internalDoFilter(ApplicationFilterChain.java:269) under the following conditions:

1.  In aimple timing test sending binary data to client, client requests a block
of data by sending a number = 4096*pow(2,x), where x is 0, 1, 2, ..., 11.  That
is, the request is 4096, 8192, ..., up to 4194304  The returned byte array is
filled with the digit 0, 1, 2, ..., 'A'.  The test program just sends the
request then prints timing, buffer.length, and the first byte of the returned
byte[].  

2.  The test succeeds up to and including the point of requesting a 64K block. 
The test was run by sending the request, printing the report, then stopping. 
The test was run again with the next larger request size, then run again with
the next larger size, etc.  At 131K it fails with an out of memory report from
the server.  (See attached report 1.)

3.  An out of memory error also occurs by repeatedly running the test and asking
for a 4096 sized block.  The test succeeds when running it in succession for
seven times.  At the eighth time, it fails.  (See attached report 2 and 2a).