DO NOT REPLY [Bug 43925] org.apache.jasper.runtime. BodyContentImpl causing huge memory allocations
https://issues.apache.org/bugzilla/show_bug.cgi?id=43925 Tim Funk <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #7 from Tim Funk <[EMAIL PROTECTED]> 2008-04-03 04:07:15 PST --- *** This bug has been marked as a duplicate of bug 37793 *** -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 37793] org.apache.jasper.runtime.BodyContentImpl doesn' t reset the 'cb' character array, causes memory leak
https://issues.apache.org/bugzilla/show_bug.cgi?id=37793 Tim Funk <[EMAIL PROTECTED]> changed: What|Removed |Added CC||[EMAIL PROTECTED] ||rvices.co.uk --- Comment #12 from Tim Funk <[EMAIL PROTECTED]> 2008-04-03 04:07:15 PST --- *** Bug 43925 has been marked as a duplicate of this bug. *** -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 40775] Single-sign on session invalidation not working as expected
https://issues.apache.org/bugzilla/show_bug.cgi?id=40775 Mauricio <[EMAIL PROTECTED]> changed: What|Removed |Added CC||[EMAIL PROTECTED] --- Comment #5 from Mauricio <[EMAIL PROTECTED]> 2008-04-03 06:27:21 PST --- Somebody resolve this problem ? I use jboss 4.0.5 configured with tomcat 55. E have two war's, one war is used for login (unprotected) and the other war is my application that is protected. When my session timeout expires in application war, sometimes it's no go to form login in login war. I guess that it is can be related for the discussion opened here. Somebody resolved this problem ? 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 42662] Classloader issue for replicated sessions and dynamic proxies
https://issues.apache.org/bugzilla/show_bug.cgi?id=42662 --- Comment #2 from Naaman Lifshitz <[EMAIL PROTECTED]> 2008-04-03 06:35:08 PST --- I have encountered the same problem. Here is my post in the support forum, that includes details, as well as code that can help reproduce the problem. http://www.nabble.com/Problem-serializing-JDK-dynamic-proxies-td16467407.html Hope this helps, Naaman -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 44748] New: java.lang.ArrayIndexOutOfBoundsException
https://issues.apache.org/bugzilla/show_bug.cgi?id=44748 Summary: java.lang.ArrayIndexOutOfBoundsException Product: Tomcat 5 Version: 5.5.17 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Connector:Coyote AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Tomcat version info: Server version: Apache Tomcat/5.5.17 Server built: Apr 14 2006 02:08:29 Server number: 5.5.17.0 OS Name:Linux OS Version: 2.6.9-42.ELsmp Architecture: i386 JVM Version:1.5.0_13-b05 JVM Vendor: Sun Microsystems Inc. === Got below exceptions when the tomcat is running on the Linux server, error trace as below: Mar 20, 2008 9:01:29 PM org.apache.coyote.http11.Http11BaseProtocol start INFO: Starting Coyote HTTP/1.1 on http-8080 . . . . . Mar 20, 2008 9:01:30 PM org.apache.catalina.connector.CoyoteAdapter service SEVERE: An exception or error occurred in the container during the request processing java.lang.ArrayIndexOutOfBoundsException: 959 at sun.util.calendar.BaseCalendar.getCalendarDateFromFixedDate(BaseCalendar.java:436) at java.util.GregorianCalendar.computeFields(GregorianCalendar.java:2081) at java.util.GregorianCalendar.computeFields(GregorianCalendar.java:1996) at java.util.Calendar.setTimeInMillis(Calendar.java:1066) at java.util.Calendar.setTime(Calendar.java:1032) at java.text.SimpleDateFormat.format(SimpleDateFormat.java:785) at java.text.SimpleDateFormat.format(SimpleDateFormat.java:778) at java.text.DateFormat.format(DateFormat.java:314) at org.apache.catalina.valves.AccessLogValve.replace(AccessLogValve.java:874) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:658) at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:392) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Thread.java:595) I searched web, said "it looks like a tomcat bug because the Calendar methods are called by multiple threads through a SimpleDateFormat, which corrupted cache data and caused the exception. As stated in the SimpleDateFormat documentation, SimpleDateFormat isn't thread-safe, so the caller method org.apache.catalina.valves.AccessLogValve.replace should use synchronisation to share a SimpleDateFormat by thread, but it doesn't. " Any thoughts. Thanks in advance. /Tony -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 38483] access log valve uses simpledateformat in tread-unsafe way
https://issues.apache.org/bugzilla/show_bug.cgi?id=38483 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added CC||[EMAIL PROTECTED] --- Comment #6 from Mark Thomas <[EMAIL PROTECTED]> 2008-04-03 09:33:22 PST --- *** Bug 44748 has been marked as a duplicate of this bug. *** -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 44748] java.lang.ArrayIndexOutOfBoundsException
https://issues.apache.org/bugzilla/show_bug.cgi?id=44748 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #1 from Mark Thomas <[EMAIL PROTECTED]> 2008-04-03 09:33:22 PST --- *** This bug has been marked as a duplicate of bug 38483 *** -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]