issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
2
187
file_content
stringlengths
0
368k
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/demos/LoadTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/demos/MapDemo.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/test/channel/TestDataIntegrity.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/test/channel/TestMulticastPackages.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/test/channel/TestRemoteProcessException.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/test/channel/TestUdpPackages.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,866
Bug 46866 Seed from current time is useless
fgrep -r 'new Random(System.currentTimeMillis())' . Gives 7 places where Random initialized with seed = currentTimeMillis. This is unnecessary, because better seed initialization happens in the default Random constructor.
resolved fixed
fae26ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T11:06:06Z
2009-03-17T00:33:20Z
test/org/apache/catalina/tribes/test/io/TestSenderConnections.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,822
Bug 46822 Avoid redundant instantiations in StandardContext
null
resolved fixed
b10d9da
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-26T12:58:40Z
2009-03-09T03:40:00Z
java/org/apache/catalina/core/StandardContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
41,606
Bug 41606 The jspInit method is called twice.
The problem is: The jspInit method is called twice. The definition is: -The JSP background compilations are enable. (In default web.xml, define checkInterval and define development false.) -Define the JSP with <servlet> and <load-on-startup> tag in web.xml. The proposing: org/apache/jasper/compiler/Compiler.java ---- p...
resolved fixed
f36a2c4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-03-27T09:42:47Z
2007-02-14T02:26:40Z
java/org/apache/jasper/compiler/Compiler.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,982
Bug 46982 AccessLogValve reports correct time but incorrect offset following Spring DST transition.
This is a problem with AccessLogValve for tc5.5 as well as tc6.0 on all platforms. With the system clock on my linux machine (Ubuntu in my case) to just before the US time change on March 8, I started Tomcat 5.5 and see the following messages in my Tomcat access log after accessing Tomcat JSP example pages at the time ...
resolved fixed
360f8eb
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T10:17:59Z
2009-04-07T10:26:40Z
java/org/apache/catalina/valves/AccessLogValve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,933
Bug 46933 Using Java 1.5 in StringManager
null
resolved fixed
23c47da
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T11:08:17Z
2009-03-27T18:53:20Z
java/org/apache/tomcat/util/res/StringManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,933
Bug 46933 Using Java 1.5 in StringManager
null
resolved fixed
23c47da
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T11:08:17Z
2009-03-27T18:53:20Z
test/org/apache/tomcat/util/res/TestStringManager.java
46,958
Bug 46958 manager XML interface hard-coded path in XSL transformation
null
resolved fixed
a9a58fb
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T11:40:08Z
2009-04-02T22:06:40Z
java/org/apache/catalina/manager/Constants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,967
Bug 46967 ManagerBase.setRandomFile error handling fix
On some platforms (z/OS for sure), the device file /dev/urandom can pass the "f.exists()" test, but throws an IOException of some kind when trying to open it. The current code in ManagerBase.setRandomFile() doesn't handle this, which results in EVERY call to getRandom() to try again and log the error "Failed to close r...
resolved fixed
243aa86
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T12:59:21Z
2009-04-03T23:06:40Z
java/org/apache/catalina/session/ManagerBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,986
Bug 46986 org.apache.jasper.Constants public arrays are mutable
There are various public String arrays in org.apache.jasper.Constants. Although the array variables are final, any code can change any of the array constants.
resolved fixed
f497f12
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T15:25:05Z
2009-04-07T21:33:20Z
java/org/apache/jasper/Constants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,986
Bug 46986 org.apache.jasper.Constants public arrays are mutable
There are various public String arrays in org.apache.jasper.Constants. Although the array variables are final, any code can change any of the array constants.
resolved fixed
f497f12
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T15:25:05Z
2009-04-07T21:33:20Z
java/org/apache/jasper/compiler/PageInfo.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,986
Bug 46986 org.apache.jasper.Constants public arrays are mutable
There are various public String arrays in org.apache.jasper.Constants. Although the array variables are final, any code can change any of the array constants.
resolved fixed
f497f12
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T15:25:05Z
2009-04-07T21:33:20Z
java/org/apache/jasper/xmlparser/ParserUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,988
Bug 46988 JMXAccessorTask String constants should be final
null
resolved fixed
81ebe8f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T15:28:08Z
2009-04-07T21:33:20Z
java/org/apache/catalina/ant/jmx/JMXAccessorTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,990
Bug 46990 Synchronize target can be changed midway
null
resolved fixed
f1fd999
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:08:42Z
2009-04-07T21:33:20Z
java/org/apache/catalina/core/StandardContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,990
Bug 46990 Synchronize target can be changed midway
null
resolved fixed
f1fd999
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:08:42Z
2009-04-07T21:33:20Z
java/org/apache/catalina/core/StandardHost.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,990
Bug 46990 Synchronize target can be changed midway
null
resolved fixed
f1fd999
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:08:42Z
2009-04-07T21:33:20Z
java/org/apache/catalina/tribes/membership/Membership.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,990
Bug 46990 Synchronize target can be changed midway
null
resolved fixed
f1fd999
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:08:42Z
2009-04-07T21:33:20Z
java/org/apache/catalina/util/InstanceSupport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,990
Bug 46990 Synchronize target can be changed midway
null
resolved fixed
f1fd999
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:08:42Z
2009-04-07T21:33:20Z
java/org/apache/catalina/util/LifecycleSupport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,991
Bug 46991 "Bytes received " problem
use jk module submit some data with post method ,but "Bytes received" always show zero see source file ,JkCoyoteHandler.java ,in "inovke" method public int invoke( Msg msg, MsgContext ep ) throws IOException { if( ep.isLogTimeEnabled() ) ep.setLong( MsgContext.TIMER_PRE_REQUEST, System.currentTimeMillis()); Request req...
resolved fixed
a228c06
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-08T16:13:23Z
2009-04-08T05:53:20Z
java/org/apache/jk/server/JkCoyoteHandler.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,997
Bug 46997 small fix to TaskQueue
null
resolved fixed
4e1c4b2
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T09:13:28Z
2009-04-08T14:13:20Z
java/org/apache/tomcat/util/threads/TaskQueue.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,998
Bug 46998 small fix to TaskThreadFactory
null
resolved fixed
0c48c98
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T09:14:40Z
2009-04-08T14:13:20Z
java/org/apache/tomcat/util/threads/TaskThreadFactory.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,562
Bug 46562 Reader not closed
SHTML files are locked when using windows. Closing the reader solves the problem.
resolved fixed
6ecc35d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T11:06:34Z
2009-01-19T13:00:00Z
java/org/apache/catalina/ssi/SSIServlet.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,909
Bug 46909 <jsp:plugin> error
<jsp:plugin type="applet"> generates type="application/x-java-applet;" instead of type = "application/x-java-applet". Firefox with Java-plugin cannot display Java applets because ";" is added.
resolved fixed
80b90ee
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T11:46:13Z
2009-03-25T05:46:40Z
java/org/apache/jasper/compiler/Generator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,961
Bug 46961 org.apache.catalina.loader.WebappClassLoader throws exception related to Java 6 Bug 6434149
null
resolved fixed
f109fb9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T12:54:09Z
2009-04-03T12:00:00Z
java/org/apache/catalina/loader/WebappClassLoader.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/Http11AprProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/Http11NioProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/Http11Processor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/InternalAprInputBuffer.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/InternalInputBuffer.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,984
Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error.
null
resolved fixed
42a093b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T13:54:05Z
2009-04-07T10:26:40Z
java/org/apache/coyote/http11/InternalNioInputBuffer.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,354
Bug 46354 LIMIT_BUFFER setting causes arraycopy errors
null
resolved fixed
78a994a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T15:11:46Z
2008-12-05T15:13:20Z
java/org/apache/jasper/runtime/BodyContentImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
42,579
Bug 42579 [Patch] JNDIRealm fails to parse absolute names
Active Directory can respond to a query with SearchResult's that are not relative. We discovered this happening with a directory hosted across many servers when the userBase was not sufficient to identify a single server. In getUserBySearch, JNDIRealm assumes that the SearchResult is relative and goes about creating a ...
resolved fixed
90e8d0d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-09T15:45:30Z
2007-06-04T18:00:00Z
java/org/apache/catalina/realm/JNDIRealm.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,013
Bug 47013 JSP not compiled at startup when used as a servlet
null
resolved fixed
c8cbc28
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-14T22:16:53Z
2009-04-10T13:26:40Z
java/org/apache/catalina/core/Constants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,013
Bug 47013 JSP not compiled at startup when used as a servlet
null
resolved fixed
c8cbc28
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-14T22:16:53Z
2009-04-10T13:26:40Z
java/org/apache/catalina/core/StandardWrapper.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
37,929
Bug 37929 invalidated session causes pageContext methods to fail
javax.servlet.http.HttpSession methods such as getAttribute(), getValue(), getAttributeNames(), getValueNames(), etc, throw an IllegalStateException if called on a session that has been invalidated. So, with the following code in a JSP page: <% session.invalidate(); Object obj = pageContext.findAttribute("foo"); %> An ...
resolved fixed
04cacaf
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-16T15:16:43Z
2005-12-16T08:00:00Z
java/org/apache/jasper/runtime/PageContextImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,925
Bug 46925 Nested groups in JNDI realm with non-recursive implementation
null
resolved fixed
d04dd88
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-27T18:54:55Z
2009-03-27T07:46:40Z
java/org/apache/catalina/realm/JNDIRealm.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,046
Bug 47046 Shutdown does not unregister all MBeans
null
resolved fixed
54b9da9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-29T22:47:53Z
2009-04-17T12:06:40Z
java/org/apache/catalina/connector/MapperListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,046
Bug 47046 Shutdown does not unregister all MBeans
null
resolved fixed
54b9da9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-29T22:47:53Z
2009-04-17T12:06:40Z
java/org/apache/catalina/mbeans/MBeanUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,046
Bug 47046 Shutdown does not unregister all MBeans
null
resolved fixed
54b9da9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-04-29T22:47:53Z
2009-04-17T12:06:40Z
java/org/apache/catalina/mbeans/ServerLifecycleListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,050
Bug 47050 StandardHostValve.status unnecessarily HTML-escapes the error message
null
resolved fixed
1ad0501
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-05-01T15:34:43Z
2009-04-19T05:46:40Z
java/org/apache/catalina/core/StandardHostValve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,111
Bug 47111 do caching the resources like the docu say it (StringManager)
null
resolved wontfix
96167ed
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-05-02T23:36:24Z
2009-04-28T12:00:00Z
java/org/apache/tomcat/util/res/StringManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,234
Bug 47234 serviceStartTime is different in MemberImpl from McastServiceImpl
Hi, I'm using the tribes cluster module in my own application (which has nothing to do with tomcat) and I'm using the member alive time value to sort all the cluster members. This bug produces the following: I have 2 nodes that were started almost at the same time and both nodes claim that the other node was started be...
resolved fixed
9fa7640
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-05-21T18:35:40Z
2009-05-21T12:46:40Z
java/org/apache/catalina/tribes/membership/McastServiceImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,216
Bug 47216 Possible NPE in Http11Processor.action()
The code at around line 1075: } else if (actionCode == ActionCode.ACTION_REQ_LOCAL_ADDR_ATTRIBUTE) { if (localAddr == null) localAddr = socket.getLocalAddress().getHostAddress(); fails to check if "socket != null". Since this is checked everywhere else in the method this is probably a bug. The method Http11Processor.pa...
resolved wontfix
36feee0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-05-25T11:00:23Z
2009-05-18T20:53:20Z
java/org/apache/coyote/http11/Http11Processor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,158
Bug 47158 I think AccessLogValve has race condition problem
null
resolved fixed
f00029e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-04T15:36:07Z
2009-05-05T19:00:00Z
java/org/apache/catalina/valves/AccessLogValve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,299
Bug 47299 Cannot override StandardContext in embedding case because of StandardSession.fireContainerEvent
StandardSession.fireContainerEvent checks for the String class name! Why not just use an instanceof check here?
resolved fixed
468f370
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-05T21:38:44Z
2009-06-02T10:53:20Z
java/org/apache/catalina/session/StandardSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,343
Bug 47343 Fails re-deploying, when we update context.xml.
null
resolved fixed
cc1f0dd
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-11T13:48:42Z
2009-06-10T07:46:40Z
java/org/apache/catalina/startup/HostConfig.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,369
Bug 47369 DeltaRequest is never reset. (use BackupManager)
null
resolved fixed
b3e2be4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-15T17:35:07Z
2009-06-15T07:13:20Z
java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,389
Bug 47389 DeltaManager doesn't do the session replication. (notifySessionListenersOnReplication=false)
null
resolved fixed
c768090
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-18T15:27:55Z
2009-06-18T07:26:40Z
java/org/apache/catalina/ha/session/DeltaManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,308
Bug 47308 Cannot join in the cluster membership.
null
resolved fixed
51fd68b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-18T17:08:38Z
2009-06-03T06:20:00Z
java/org/apache/catalina/tribes/membership/McastService.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,308
Bug 47308 Cannot join in the cluster membership.
null
resolved fixed
51fd68b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-18T17:08:38Z
2009-06-03T06:20:00Z
java/org/apache/catalina/tribes/membership/McastServiceImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
38,352
Bug 38352 Additional Entries for Default catalina.policy file.
This patch adds additional entries to the catalina.policy file. Specifically: The catalina.base/shared directory is added and given equal permissions to catalina.home/common java.io.tmpdir is now readable. javax.servlet.context.tempdir is now readable. I think to be compliant with the spec, this must be allowed. Direct...
resolved fixed
76a4eb3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-19T13:03:42Z
2006-01-23T01:33:20Z
java/org/apache/jasper/compiler/JspRuntimeContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,439
Bug 47439 PooledConnection.connect() fails to check for null connection
PooledConnection.connect() fails to check for null return from java.sql.Driver.connect() method. This can result in an NPE when the connection is used later.
resolved fixed
ef96fa2
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-28T15:58:13Z
2009-06-27T08:06:40Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/PooledConnection.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,440
Bug 47440 Remove DB-specific SQL statements from test cases (SELECT 1)
Some of the test cases assume that the JDBC provider supports "SELECT 1" as a valid SQL statement; however this is not always the case, e.g. Derby requires a table name to select from. The solution provided in the patches is to use the validation query defined in the properties set up for the test, rather than always u...
resolved fixed
d92da6e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-29T14:36:57Z
2009-06-27T08:06:40Z
modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/CheckOutThreadTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,440
Bug 47440 Remove DB-specific SQL statements from test cases (SELECT 1)
Some of the test cases assume that the JDBC provider supports "SELECT 1" as a valid SQL statement; however this is not always the case, e.g. Derby requires a table name to select from. The solution provided in the patches is to use the validation query defined in the properties set up for the test, rather than always u...
resolved fixed
d92da6e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-29T14:36:57Z
2009-06-27T08:06:40Z
modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/DefaultProperties.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,440
Bug 47440 Remove DB-specific SQL statements from test cases (SELECT 1)
Some of the test cases assume that the JDBC provider supports "SELECT 1" as a valid SQL statement; however this is not always the case, e.g. Derby requires a table name to select from. The solution provided in the patches is to use the validation query defined in the properties set up for the test, rather than always u...
resolved fixed
d92da6e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-06-29T14:36:57Z
2009-06-27T08:06:40Z
modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestSlowQueryReport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
37,984
Bug 37984 JNDIRealm.java not able to handle MD5 password
I'm using JNDIRealm to authenticate to OpenLDAP 2.2.28. Within OpenLDAP I've configured the userPassword attribute for each user to contain the MD5 digest, and each is prefixed with the string "{MD5}". I am not an LDAP expert by any means but I believe this prefix is a standard convention. Anyway assuming this is a con...
resolved fixed
c6818a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-01T22:13:33Z
2005-12-21T10:13:20Z
java/org/apache/catalina/realm/JNDIRealm.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
37,933
Bug 37933 Bugs in Tomcat
null
resolved fixed
202a33e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-05T11:30:22Z
2005-12-16T10:46:40Z
java/org/apache/jasper/compiler/Generator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
37,933
Bug 37933 Bugs in Tomcat
null
resolved fixed
202a33e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-05T11:30:22Z
2005-12-16T10:46:40Z
java/org/apache/jasper/compiler/PageInfo.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,478
Bug 47478 DeltaSession ignores notifyListenersOnReplication when BackupManager is used.
null
resolved fixed
c1099f7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-06T15:45:32Z
2009-07-06T06:00:00Z
java/org/apache/catalina/ha/session/DeltaSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
39,231
Bug 39231 The JAAS contract for LoginModule is broken
The issue is that the custom JAAS's LoginModule.logout() method is never called. I guess this has been never implemented correctly (at least since Tomcat 5.5.9). The thing is that according to the JAAS spec, the LoginContext.logout() is supposed to invoke the logout method for each LoginModule configured for this Login...
resolved fixed
80f8ec6
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-07T16:33:02Z
2006-04-07T00:33:20Z
java/org/apache/catalina/realm/GenericPrincipal.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
39,231
Bug 39231 The JAAS contract for LoginModule is broken
The issue is that the custom JAAS's LoginModule.logout() method is never called. I guess this has been never implemented correctly (at least since Tomcat 5.5.9). The thing is that according to the JAAS spec, the LoginContext.logout() is supposed to invoke the logout method for each LoginModule configured for this Login...
resolved fixed
80f8ec6
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-07T16:33:02Z
2006-04-07T00:33:20Z
java/org/apache/catalina/realm/JAASRealm.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
39,231
Bug 39231 The JAAS contract for LoginModule is broken
The issue is that the custom JAAS's LoginModule.logout() method is never called. I guess this has been never implemented correctly (at least since Tomcat 5.5.9). The thing is that according to the JAAS spec, the LoginContext.logout() is supposed to invoke the logout method for each LoginModule configured for this Login...
resolved fixed
80f8ec6
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-07T16:33:02Z
2006-04-07T00:33:20Z
java/org/apache/catalina/session/StandardSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,524
Bug 47524 McastServiceImpl executor is not dispatching events.
null
resolved fixed
aa8a2d3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-14T14:46:34Z
2009-07-14T11:13:20Z
java/org/apache/catalina/tribes/membership/McastServiceImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,524
Bug 47524 McastServiceImpl executor is not dispatching events.
null
resolved fixed
aa8a2d3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-14T14:46:34Z
2009-07-14T11:13:20Z
java/org/apache/catalina/tribes/transport/ReceiverBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,524
Bug 47524 McastServiceImpl executor is not dispatching events.
null
resolved fixed
aa8a2d3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-14T14:46:34Z
2009-07-14T11:13:20Z
java/org/apache/catalina/tribes/util/ExecutorFactory.java
40,380
Bug 40380 Potential syncro problem in StandardSession.expire(boolean)
public void expire(boolean notify) { // Mark this session as "being expired" if needed if (expiring) return; // No man's land here synchronized (this) { if (manager == null) return; expiring = true;
resolved fixed
6f3e56e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-14T17:22:47Z
2006-09-01T00:20:00Z
java/org/apache/catalina/session/StandardSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,515
Bug 47515 Tomcat can't replicate session when it is started.
null
resolved fixed
83e98da
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-16T14:12:16Z
2009-07-13T01:53:20Z
java/org/apache/catalina/ha/session/DeltaManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
40,551
Bug 40551 Sticky sessions using PersistentManager enter indeterminate state on node failover
If a cluster of nodes is being load balanced with sticky sessions, and a particular node becomes unavailable, any sessions bound to that node must be redistributed. Particularly in the case of mod_jk these sessions will not be bound to whichever node the failover occurred on because the jessionid will still contain the...
resolved fixed
f0d447d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-16T20:07:19Z
2006-09-20T05:26:40Z
java/org/apache/catalina/ha/session/JvmRouteBinderValve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
41,059
Bug 41059 WebAppClassLoader clearReferences code break running threads
When the WebAppClassLoader stops it manually sets all static and final variables to null in the clearReferences method. This results in NPEs for any thread that was not stopped and not expecting its final or static variables to be null. This is particularly a problem with hot deploys since the unload fails and terminat...
resolved fixed
a9f0239
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-17T17:19:59Z
2006-11-28T16:06:40Z
java/org/apache/catalina/loader/WebappClassLoader.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,518
Bug 47518 Valve Interface Javadocs for invoke method references non-existent method
It appears that the Valve interface javadoc hasn't been updated since around TC 5.5. Here is a snip of what it currently available from TC's website (6.0.20 I would guess): " # If the corresponding Response was not generated (and control was not returned, call the next Valve in the pipeline (if there is one) by executi...
resolved fixed
9dc93f5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-21T06:24:58Z
2009-07-13T10:13:20Z
java/org/apache/catalina/Valve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,907
Bug 46907 Jasper with log4j in web-app classpath and debug level enabled prevents reading HTTP POST stream from JSP
This is on Tomcat 5.5.x (don't remember the last rev. number, not my current machine). When log4j is in the classpath of the web-app and is configured to log at debug level, Jasper dumps the whole HTTP POST request body as debug traces. This consumes the HttpServletRequest input stream which then arrives unusable for t...
resolved fixed
50d0e6e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-23T17:48:56Z
2009-03-24T18:40:00Z
java/org/apache/jasper/servlet/JspServlet.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
41,824
Bug 41824 Unable to use nested type in TLD
null
resolved fixed
768af9f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-24T19:06:54Z
2007-03-12T14:33:20Z
java/org/apache/jasper/compiler/JspUtil.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,568
Bug 47568 TestTomcat fails to delete work directory
TestTomcat.setUp() creates a work directory, but does not delete it in tearDown()
resolved fixed
cfb18a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T07:01:13Z
2009-07-23T17:26:40Z
test/org/apache/catalina/startup/TestTomcat.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,569
Bug 47569 Test cases do not clear up afterwards
Some of the test cases (e.g. TestTomcat) start a Tomcat server, This creates the directory tree tomcat.8080/work... which is not deleted when the test finishes.
resolved fixed
a9e00d5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T18:10:35Z
2009-07-23T17:26:40Z
test/org/apache/catalina/connector/TestRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,569
Bug 47569 Test cases do not clear up afterwards
Some of the test cases (e.g. TestTomcat) start a Tomcat server, This creates the directory tree tomcat.8080/work... which is not deleted when the test finishes.
resolved fixed
a9e00d5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T18:10:35Z
2009-07-23T17:26:40Z
test/org/apache/catalina/startup/TestTomcat.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,576
Bug 47576 Javadoc errors - Exception name misspelt
The files FairBlockingQueue.java MultiLockFairBlockingQueue.java use * @throws UnsupportedOperation This should be * @throws UnsupportedOperationException
resolved fixed
abbb922
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T18:13:36Z
2009-07-24T21:13:20Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/FairBlockingQueue.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,576
Bug 47576 Javadoc errors - Exception name misspelt
The files FairBlockingQueue.java MultiLockFairBlockingQueue.java use * @throws UnsupportedOperation This should be * @throws UnsupportedOperationException
resolved fixed
abbb922
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T18:13:36Z
2009-07-24T21:13:20Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/MultiLockFairBlockingQueue.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,583
Bug 47583 Fix occasional test failure in TestConcurrency
null
resolved fixed
278dedc
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-07-30T19:40:54Z
2009-07-26T12:06:40Z
modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestConcurrency.java
package org.apache.tomcat.jdbc.test; import java.sql.Connection; import java.util.concurrent.atomic.AtomicInteger; import org.apache.tomcat.jdbc.pool.DataSource; import org.apache.tomcat.jdbc.test.driver.Driver; public class TestConcurrency extends DefaultTestCase { public static final boolean debug = Boolean....
47,612
Bug 47612 [PATCH] fix unsafe public string array in AbstractCreateStatementInterceptor
null
resolved fixed
4f5a5e4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-08-05T16:19:34Z
2009-07-30T21:40:00Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/interceptor/AbstractCreateStatementInterceptor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,612
Bug 47612 [PATCH] fix unsafe public string array in AbstractCreateStatementInterceptor
null
resolved fixed
4f5a5e4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-08-05T16:19:34Z
2009-07-30T21:40:00Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/interceptor/AbstractQueryReport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,378
Bug 47378 welcome-file ignores servlet mapping
Web applications that use a servlet mapping for their welcome-file are ignored and the server returns either a directory listing or a 404 if the listing is disabled. I have JSF servlet defined and a servlet-mapping for *.jsf to go to the FacesServlet. I have "index.jsf" listed as by welcome-file and I get a 404 with di...
resolved fixed
fe53ca9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-08-31T13:59:00Z
2009-06-16T16:33:20Z
java/org/apache/tomcat/util/http/mapper/Mapper.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,705
Bug 47705 ArithmeticException: / by zero when expiring sessions via manager
Received ArithmeticException: / by zero when expiring sessions via Tomcat manager webapp. This exception was thrown only if session-timeout is set as -1 on webapp web.xml. Moreover, the exception was also thrown regardless of the idle parameter value (/expire?path=/xxx&idle=mm) as long as session-timeout = -1. Result: ...
resolved fixed
6ab874a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-08-31T14:17:37Z
2009-08-19T05:33:20Z
java/org/apache/catalina/manager/ManagerServlet.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,826
Bug 47826 a logging statement error in org.apache.catalina.startup.Bootstrap.java
// Local repository boolean replace = false; String before = repository; while ((i=repository.indexOf(CATALINA_HOME_TOKEN))>=0) { replace=true; if (i>0) { repository = repository.substring(0,i) + getCatalinaHome() + repository.substring(i+CATALINA_HOME_TOKEN.length()); } else { repository = getCatalinaHome() + reposito...
resolved fixed
720de5e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-12T16:13:14Z
2009-09-11T23:00:00Z
java/org/apache/catalina/startup/Bootstrap.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,820
Bug 47820 Static utility methods in Tomcat should be instance methods
Why are the static addServlet() methods in Tomcat static? I can see they don't use any state from the instance, but isn't it cleaner to use an instance method, so that the API is uniform (everything I want to do to a tomcat instance goes through the instance)? It would be more consistent to follow the pattern of addSer...
resolved fixed
6cce550
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T10:26:32Z
2009-09-11T06:20:00Z
java/org/apache/catalina/startup/Tomcat.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,828
Bug 47828 Change Tomcat.setSilent() to setSilent(boolean)
Change Tomcat.setSilent() to setSilent(boolean). It's nicer for clients to have a JavaBean type setter, and it doesn't seem to make sense that you can set something but not unset it.
resolved fixed
59e88f1
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T10:38:23Z
2009-09-12T04:33:20Z
java/org/apache/catalina/startup/Tomcat.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,950
Bug 46950 SSL renegotiation does not occur when resource with CLIENT-CERT auth is requested
When a part of a webapp requires an SSL connection with a client certificate there should be an SSL renegotiation to request a client certificate from the browser. This is the configuration I added to an webapp that already uses an SSL connector: <login-config id="LoginConfig_1"> <auth-method>CLIENT-CERT</auth-method> ...
resolved fixed
e9248d7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T17:50:54Z
2009-04-01T10:00:00Z
java/org/apache/catalina/core/AprLifecycleListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
46,950
Bug 46950 SSL renegotiation does not occur when resource with CLIENT-CERT auth is requested
When a part of a webapp requires an SSL connection with a client certificate there should be an SSL renegotiation to request a client certificate from the browser. This is the configuration I added to an webapp that already uses an SSL connector: <login-config id="LoginConfig_1"> <auth-method>CLIENT-CERT</auth-method> ...
resolved fixed
e9248d7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T17:50:54Z
2009-04-01T10:00:00Z
java/org/apache/coyote/http11/Http11AprProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
46,950
Bug 46950 SSL renegotiation does not occur when resource with CLIENT-CERT auth is requested
When a part of a webapp requires an SSL connection with a client certificate there should be an SSL renegotiation to request a client certificate from the browser. This is the configuration I added to an webapp that already uses an SSL connector: <login-config id="LoginConfig_1"> <auth-method>CLIENT-CERT</auth-method> ...
resolved fixed
e9248d7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T17:50:54Z
2009-04-01T10:00:00Z
java/org/apache/tomcat/jni/SSLSocket.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,161
Bug 47161 Manager ignores executors on status pages
When displaying the thread pools, the StatusManagerServlet ignores executors and uses the 'standard' ThreadPool information for each connector. This causes incorrect information to be displayed when a connector is configured to use an executor. On a related topic, it appears that the connector<->executor link is not ex...
resolved fixed
aaf7b5d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T21:06:14Z
2009-05-06T11:40:00Z
java/org/apache/tomcat/util/net/AbstractEndpoint.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,161
Bug 47161 Manager ignores executors on status pages
When displaying the thread pools, the StatusManagerServlet ignores executors and uses the 'standard' ThreadPool information for each connector. This causes incorrect information to be displayed when a connector is configured to use an executor. On a related topic, it appears that the connector<->executor link is not ex...
resolved fixed
aaf7b5d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-15T21:06:14Z
2009-05-06T11:40:00Z
java/org/apache/tomcat/util/threads/ResizableExecutor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,225
Bug 47225 Wrong argument in redirectPath.setChars in Mapper.internalMapWrapper()
null
resolved fixed
a31d52f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-16T21:17:11Z
2009-05-20T00:40:00Z
java/org/apache/tomcat/util/http/mapper/Mapper.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,866
Bug 47866 NullPointerException in embedded tomcat
It seems that the WebappClassLoader was stopped? {noformat} Caused by: java.lang.NullPointerException at org.apache.catalina.loader.WebappClassLoader.findResources(WebappClassLoader.java:994) at java.lang.ClassLoader.getResources(ClassLoader.java:1016) {noformat} All I did was launch a server add a context and then ask...
resolved wontfix
189181a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-21T10:54:36Z
2009-09-18T05:00:00Z
test/org/apache/catalina/startup/TestTomcat.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,499
Bug 47499 provide better insight on BindException: Cannot assign requested address
1) cite the address you attempt to listen (not just the port) 2) proper exception chaining the following info is currently lost: <<java.net.BindException: Cannot assign requested address at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359) at java.net.ServerSo...
resolved fixed
73bb9e4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-22T21:16:54Z
2009-07-09T03:26:40Z
java/org/apache/tomcat/util/net/JIoEndpoint.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,320
Bug 47320 Decoding jsessionid bug on z/os
If you receive a rewritten URL on z/os with uss (unix on a mainframe), Tomcat does not properly decode the jsessionid portion of the URL. The problem is in org.apache.catalina.connector.CoyoteAdapter in the parseSessionId method. The two instantiations of a String object do not specify the encdoding to use. e.g. String...
resolved fixed
0f99904
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-09-27T16:48:23Z
2009-06-05T13:53:20Z
java/org/apache/catalina/connector/CoyoteAdapter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
40,001
Bug 40001 HTML pages should not use GET to restart web-apps.
null
resolved fixed
99f01fd
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-10-10T21:54:54Z
2006-07-10T19:33:20Z
java/org/apache/catalina/manager/Constants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...