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
48,645
Bug 48645 RequestUtil.URLDecode(byte[] bytes, String enc)
the enc is not used in the implementation public static String URLDecode(byte[] bytes, String enc) { return URLDecode(bytes, null, false); }
resolved fixed
d0f9da2
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-31T12:48:53Z
2010-01-31T09:26:40Z
java/org/apache/catalina/util/RequestUtil.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 ...
48,647
Bug 48647 RemoteIpFilter : request.secure and request.scheme are not forced to "false" and "http" if X-Forwarded-Proto=http
null
resolved fixed
7aa1206
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-02T13:25:42Z
2010-01-31T20:33:20Z
java/org/apache/catalina/filters/RemoteIpFilter.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribu...
48,653
Bug 48653 RemoteIpValve : request.secure and request.scheme are not forced to "false" and "http" if X-Forwarded-Proto=http
null
resolved fixed
1789bd8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-02T13:28:55Z
2010-02-01T13:13:20Z
java/org/apache/catalina/valves/RemoteIpValve.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 ...
48,653
Bug 48653 RemoteIpValve : request.secure and request.scheme are not forced to "false" and "http" if X-Forwarded-Proto=http
null
resolved fixed
1789bd8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-02T13:28:55Z
2010-02-01T13:13:20Z
test/org/apache/catalina/valves/TestRemoteIpValve.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 ...
48,551
Bug 48551 StringCache: Use entrySet() rather than keySet() + get()
null
resolved fixed
c85e791
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-02T17:21:23Z
2010-01-15T01:46:40Z
java/org/apache/catalina/deploy/WebXml.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 ...
48,551
Bug 48551 StringCache: Use entrySet() rather than keySet() + get()
null
resolved fixed
c85e791
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-02T17:21:23Z
2010-01-15T01:46:40Z
java/org/apache/tomcat/util/buf/StringCache.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...
48,678
Bug 48678 org.apache.catalina.startup.Catalina incorrectly duplicates super class member
null
resolved fixed
067e0ba
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-06T21:34:12Z
2010-02-04T05:06:40Z
java/org/apache/catalina/startup/Catalina.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 ...
48,643
Bug 48643 catalina.session.FileStore.save() and load() - close() bugs
The code for the save() method reads: try { fos = new FileOutputStream(file.getAbsolutePath()); oos = new ObjectOutputStream(new BufferedOutputStream(fos)); } catch (IOException e) { if (oos != null) { <== oos can only be null here try { oos.close(); } catch (IOException f) { // Ignore } } throw e; } Presumably the cat...
resolved fixed
6f48cde
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-07T22:16:40Z
2010-01-30T22:20:00Z
java/org/apache/catalina/session/FileStore.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 ...
48,643
Bug 48643 catalina.session.FileStore.save() and load() - close() bugs
The code for the save() method reads: try { fos = new FileOutputStream(file.getAbsolutePath()); oos = new ObjectOutputStream(new BufferedOutputStream(fos)); } catch (IOException e) { if (oos != null) { <== oos can only be null here try { oos.close(); } catch (IOException f) { // Ignore } } throw e; } Presumably the cat...
resolved fixed
6f48cde
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-07T22:16:40Z
2010-01-30T22:20:00Z
java/org/apache/catalina/session/StandardManager.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 ...
48,665
Bug 48665 RemoteIpValve examples refer to "connector" package
null
resolved fixed
9905155
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-08T02:06:49Z
2010-02-03T09:40:00Z
java/org/apache/catalina/valves/RemoteIpValve.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 ...
48,109
Bug 48109 Improve binaryStream processing in WebappClassLoader#findResourceInternal
null
resolved fixed
dda2cbc
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-08T22:07:24Z
2009-11-03T01: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 ...
48,170
Bug 48170 Unnecessary synchronization by JspFactory.getDefaultFactory contributes to stability problems
I have a soak test at constant load that is initially stable. Within the hour, an ever increasing number of blocked threads develops. The vast majority of threads are in JSP rendering, blocked on JspFactory.getDefaultFactory(). The server eventually crashes. We are running Java 6. Upon code inspection, there appears to...
resolved fixed
c09753b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-08T22:20:55Z
2009-11-10T21:53:20Z
java/javax/servlet/jsp/JspFactory.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 not u...
48,726
Bug 48726 DeployTask throws OutOfMemoryErrors when deploying large WAR files
null
resolved fixed
53e0674
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-10T23:47:11Z
2010-02-11T03:46:40Z
java/org/apache/catalina/ant/AbstractCatalinaTask.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 ...
48,726
Bug 48726 DeployTask throws OutOfMemoryErrors when deploying large WAR files
null
resolved fixed
53e0674
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-10T23:47:11Z
2010-02-11T03:46:40Z
java/org/apache/catalina/ant/DeployTask.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 ...
48,318
Bug 48318 WebDAV servlet returns 500 if files not readable
If a directory contains a file that is not readable by the Tomcat process (eg file permissions, dangling symlink) then Tomcat throws a NullPointerException and returns a 500 Internal Server Error to the client. Throwing NPE in these circumstances is certainly wrong. Returning 500 with no further information is unhelpfu...
resolved fixed
da42e44
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-12T22:12:48Z
2009-12-01T12:20:00Z
java/org/apache/catalina/servlets/WebdavServlet.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 ...
48,371
Bug 48371 addWebXmlMappings does not place servlet tags correctly
If there is a commented-out <security-constraint> or commented-out <servlet> tag and addWebXmlMappings="true", the JSP's servlet and servlet-mapping tags are placed incorrectly and Tomcat will not start due to "--" being inside a comment. Basically, it seems the web.xml is not parsed correctly when using addWebXmlMappi...
resolved fixed
563e315
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-13T18:25:07Z
2009-12-11T00:06:40Z
java/org/apache/jasper/JspC.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 ...
48,384
Bug 48384 globalXsltFile parameter for the DefaultServlet
When overriding the DefaultServlet for a given application, the globalXsltFile path need to be relative to Tomcat root. for example: <init-param> <param-name>globalXsltFile</param-name> <param-value>webapps/quercus/WEB-INF/listing.xsl</param-value> </init-param> it would be nice if the path could be relative to the app...
resolved fixed
0e595cf
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-13T20:12:11Z
2009-12-13T21:33:20Z
java/org/apache/catalina/servlets/DefaultServlet.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 ...
48,498
Bug 48498 6.0.22RC: ArrayIndexOutOfBoundsException from Jasper when compilation error inside a CDATA block
null
resolved fixed
789ac1e
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-16T00:46:07Z
2010-01-06T23:20:00Z
java/org/apache/jasper/compiler/JavacErrorDetail.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 ...
48,580
Bug 48580 6.0.24: AccessControlException in ProtectedFunctionMapper on first access to certain JSP
null
resolved fixed
9e55819
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-16T09:27:49Z
2010-01-20T17:53:20Z
java/org/apache/jasper/security/SecurityClassLoad.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 ...
48,582
Bug 48582 JspServletWrapper.getServletContext() throws NullPointerException
null
resolved fixed
7301a10
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-02-16T11:07:00Z
2010-01-20T17:53:20Z
java/org/apache/jasper/servlet/JspServletWrapper.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 ...
48,661
Bug 48661 inconsistent error page behavior
There seems to be a bug or at least an inconsistency in how tomcat handles the error page. In Tomcat 6.0.20, if I define my error page like this in web.xml: <error-page> <exception-type>java.lang.Exception</exception-type> <location>/unexpectedErrors.jsp</location> </error-page> Then, if the response has already been c...
resolved fixed
1ec5ca7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-08T18:58:28Z
2010-02-02T19: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 ...
48,729
Bug 48729 JNDIRealm.java not parsing roles correctly
null
resolved fixed
4cf35b8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-09T12:14:23Z
2010-02-11T23: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 ...
48,737
Bug 48737 JspCompilationContext assumes that tagfile with a path starting with META-INF are in jars without checking
null
resolved fixed
6ac5036
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-09T12:30:37Z
2010-02-13T22:26:40Z
java/org/apache/jasper/JspCompilationContext.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 ...
48,760
Bug 48760 Tomcat breaks in serving large files (>=1.8MB) under high load and high threading.
null
resolved fixed
f1760d8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-09T13:15:15Z
2010-02-18T02:26:40Z
java/org/apache/naming/resources/FileDirContext.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 ...
48,760
Bug 48760 Tomcat breaks in serving large files (>=1.8MB) under high load and high threading.
null
resolved fixed
f1760d8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-09T13:15:15Z
2010-02-18T02:26:40Z
java/org/apache/naming/resources/WARDirContext.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 ...
44,265
Bug 44265 Improve JspWriterImpl performance with "inline" sub method
As you know, the JspWriterImpl.write method was always invoked in JSP file frequently. But I found its performance is poor because too many sub method were invoked as well. After copying two sub method's code to write method, the performance was improved observably.
resolved fixed
9113574
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-11T18:32:39Z
2008-01-18T07:06:40Z
java/org/apache/jasper/runtime/JspWriterImpl.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 ...
48,934
Bug 48934 Cluster's regression. When replication fails once, replication can be never done again.
null
resolved fixed
fc66705
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-18T13:54:27Z
2010-03-18T13:46:40Z
java/org/apache/catalina/tribes/transport/ReplicationTransmitter.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 ...
48,934
Bug 48934 Cluster's regression. When replication fails once, replication can be never done again.
null
resolved fixed
fc66705
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-18T13:54:27Z
2010-03-18T13:46:40Z
java/org/apache/catalina/tribes/transport/nio/PooledParallelSender.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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06:40Z
java/org/apache/catalina/Context.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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06:40Z
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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06:40Z
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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06:40Z
java/org/apache/catalina/mbeans/MBeanFactory.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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06:40Z
java/org/apache/catalina/startup/ContextConfig.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 ...
48,662
Bug 48662 context.xml expansion on deployment improvements
Two parts: 1. Log a warning/info message if Tomcat ignores a bundled context.xml in favour of one in CATALINA_BASE/<engine name>/<host name> 2. Make the extraction/copying of context.xml configurable, probably via a new attribute extractXml on the host
resolved fixed
83226d9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T11:57:46Z
2010-02-03T04:06: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 ...
48,717
Bug 48717 Session listeners not called on cluster node start
null
resolved fixed
39d3082
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-28T19:34:12Z
2010-02-10T00:00:00Z
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 ...
48,895
Bug 48895 WebAppClassLoader.clearThreadLocalMap() concurrency issues
I think that the memory leak protection of WebAppClassLoader.clearReferencesThreadLocals() which detects and clears ThreadLocals that would prevent GC the WebAppClassLoader instance has issues regarding concurrency : - It enumerates Threads and looks into internal structures of the Thread class, but there are no "memor...
resolved fixed
ae6fcf5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-29T15:01:14Z
2010-03-12T02:13: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 ...
48,895
Bug 48895 WebAppClassLoader.clearThreadLocalMap() concurrency issues
I think that the memory leak protection of WebAppClassLoader.clearReferencesThreadLocals() which detects and clears ThreadLocals that would prevent GC the WebAppClassLoader instance has issues regarding concurrency : - It enumerates Threads and looks into internal structures of the Thread class, but there are no "memor...
resolved fixed
ae6fcf5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-29T15:01:14Z
2010-03-12T02:13:20Z
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 ...
48,895
Bug 48895 WebAppClassLoader.clearThreadLocalMap() concurrency issues
I think that the memory leak protection of WebAppClassLoader.clearReferencesThreadLocals() which detects and clears ThreadLocals that would prevent GC the WebAppClassLoader instance has issues regarding concurrency : - It enumerates Threads and looks into internal structures of the Thread class, but there are no "memor...
resolved fixed
ae6fcf5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-03-29T15:01:14Z
2010-03-12T02:13:20Z
java/org/apache/catalina/loader/WebappLoader.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 ...
48,983
Bug 48983 Enhance RemoteIpValve and RemoteIpFilter logging
null
resolved fixed
9a42719
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-04T10:25:56Z
2010-03-25T04:06:40Z
java/org/apache/catalina/filters/RemoteIpFilter.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribu...
48,983
Bug 48983 Enhance RemoteIpValve and RemoteIpFilter logging
null
resolved fixed
9a42719
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-04T10:25:56Z
2010-03-25T04:06:40Z
java/org/apache/catalina/valves/RemoteIpValve.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 ...
49,014
Bug 49014 Add RemoteIpFilter test case
null
resolved fixed
d9330a9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-04T10:37:17Z
2010-03-29T05:20:00Z
test/org/apache/catalina/filters/TestRemoteIpFilter.java
48,648
Bug 48648 Blank page (dropped connection) when running TC7 with TCnative (APR)
null
resolved fixed
216352a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-04T16:26:51Z
2010-01-31T23:20:00Z
java/org/apache/tomcat/util/net/AprEndpoint.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...
49,018
Bug 49018 Timeout argument misprocessed when expiring sessions from Tomcat Manager
Steps to reproduce: 1. Login to the Tomcat Manager Application 2. Select a web application that has several sessions that are inactive for more than 2 minutes 3. In the text field next to the "Expire sessions" button print "2" 4. Press "Expire sessions" 5. Sample observed result: OK - Session information for applicatio...
resolved fixed
155e3f8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-07T03:24:08Z
2010-03-29T19:13: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 ...
49,075
Bug 49075 protected Class User doesn't check argument roles for null
null
resolved fixed
e59ba8f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-09T11:16:40Z
2010-04-08T20:53: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 ...
49,091
Bug 49091 Util.specialCharactersRepresentation should be private
jasper.tagplugins.jstl.Util.specialCharactersRepresentation is a mutable public static array; it is not used outside the class as far as I can tell and so should be made private
resolved fixed
1ecfaa9
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T09:42:07Z
2010-04-12T02:40:00Z
java/org/apache/jasper/tagplugins/jstl/Util.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/HandlesTypes.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/HttpConstraint.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/HttpMethodConstraint.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/MultipartConfig.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/ServletSecurity.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/WebFilter.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/WebInitParam.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/WebListener.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 ...
49,086
Bug 49086 Addition of Javadoc for Servlet 3.0 annotations
null
resolved fixed
6fc4360
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-12T10:34:09Z
2010-04-11T21:06:40Z
java/javax/servlet/annotation/WebServlet.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 ...
49,116
Bug 49116 Memory leak by HttpSession.
When session is stored in StandardManager#doUnload method, an invalid session is stored. For instance, If HttpSession#invalidate is executed while executing StandardManager#doUnload, session of "isValid=false" is stored. The session of isValid=false is restored in StandardManager#doLoad, and it registers in session map...
resolved fixed
bddfc0a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T08:48:43Z
2010-04-14T07:26:40Z
java/org/apache/catalina/session/StandardManager.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 ...
49,089
Bug 49089 ChannelData.USE_SECURE_RANDOM_FOR_UUID public static mutable field
catalina.tribes.io.ChannelData.USE_SECURE_RANDOM_FOR_UUID is a mutable public static field. It's only used by an instance method, so there's no need for it to be static. Probably no need for it to be public either; it could be a private field with a setter - or better a final field set by the constructor.
resolved fixed
cb0b029
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T10:14:34Z
2010-04-12T02:40:00Z
java/org/apache/catalina/tribes/io/ChannelData.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 ...
49,045
Bug 49045 JMX Enhancement- Provision of MBeanFactory createStandardService
Currently MBeanFactory doesn't have a method for creating a new StandardService MBean. This would become an issue for future enhancements of JMX support in Tomcat. As per discussions with Mark, this enhancement is suggested as a starting point for possible future enhancements in JMX support.
resolved fixed
32046eb
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T12:07:04Z
2010-04-04T08:33:20Z
java/org/apache/catalina/mbeans/MBeanFactory.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 ...
49,103
Bug 49103 Missing annotations
null
resolved fixed
1018cd7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:19:33Z
2010-04-12T22:06:40Z
java/org/apache/coyote/http11/Http11NioProtocol.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...
49,103
Bug 49103 Missing annotations
null
resolved fixed
1018cd7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:19:33Z
2010-04-12T22:06:40Z
java/org/apache/coyote/http11/Http11Protocol.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...
49,103
Bug 49103 Missing annotations
null
resolved fixed
1018cd7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:19:33Z
2010-04-12T22:06:40Z
java/org/apache/tomcat/util/net/AprEndpoint.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...
49,103
Bug 49103 Missing annotations
null
resolved fixed
1018cd7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:19:33Z
2010-04-12T22:06:40Z
java/org/apache/tomcat/util/net/NioEndpoint.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...
49,103
Bug 49103 Missing annotations
null
resolved fixed
1018cd7
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:19:33Z
2010-04-12T22:06:40Z
java/org/apache/tomcat/util/net/jsse/JSSEImplementation.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...
49,104
Bug 49104 Fix up some raw types
null
resolved fixed
5be4f29
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:24:17Z
2010-04-12T22:06:40Z
java/org/apache/coyote/ajp/AjpProtocol.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...
49,104
Bug 49104 Fix up some raw types
null
resolved fixed
5be4f29
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:24:17Z
2010-04-12T22:06:40Z
java/org/apache/coyote/http11/Http11Protocol.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...
49,104
Bug 49104 Fix up some raw types
null
resolved fixed
5be4f29
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:24:17Z
2010-04-12T22:06: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...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/javax/el/ExpressionFactory.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/javax/servlet/HttpConstraintElement.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 not u...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/javax/servlet/ServletContext.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 not u...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/Context.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/Host.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/Lifecycle.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/Session.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/authenticator/FormAuthenticator.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/connector/Request.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/core/ApplicationSessionCookieConfig.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/core/ContainerBase.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/tribes/ChannelListener.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/catalina/tribes/group/RpcChannel.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/el/parser/AstValue.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
java/org/apache/jasper/compiler/Node.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
webapps/examples/WEB-INF/classes/chat/ChatServlet.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 ...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
webapps/examples/WEB-INF/classes/filters/ExampleFilter.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 not u...
49,105
Bug 49105 Javadoc corrections
null
resolved fixed
ead3997
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:27:59Z
2010-04-12T22:06:40Z
webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.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 not u...
49,106
Bug 49106 Unused imports
null
resolved fixed
f8d3565
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:29:34Z
2010-04-12T22:06: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 ...
49,109
Bug 49109 RealmBase.authenticate uses toString on byte array
catalina.realm.RealmBase.authenticate(String username, byte[] credentials) has the following code: return (authenticate(username, credentials.toString())); This looks wrong, as credentials is a byte array. It should probably be: return (authenticate(username, new String(credentials[,charset])));
resolved fixed
bcf0a01
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:43:37Z
2010-04-13T00:53:20Z
java/org/apache/catalina/Realm.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 ...
49,109
Bug 49109 RealmBase.authenticate uses toString on byte array
catalina.realm.RealmBase.authenticate(String username, byte[] credentials) has the following code: return (authenticate(username, credentials.toString())); This looks wrong, as credentials is a byte array. It should probably be: return (authenticate(username, new String(credentials[,charset])));
resolved fixed
bcf0a01
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:43:37Z
2010-04-13T00:53:20Z
java/org/apache/catalina/realm/CombinedRealm.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 ...
49,109
Bug 49109 RealmBase.authenticate uses toString on byte array
catalina.realm.RealmBase.authenticate(String username, byte[] credentials) has the following code: return (authenticate(username, credentials.toString())); This looks wrong, as credentials is a byte array. It should probably be: return (authenticate(username, new String(credentials[,charset])));
resolved fixed
bcf0a01
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:43:37Z
2010-04-13T00:53:20Z
java/org/apache/catalina/realm/LockOutRealm.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 ...
49,109
Bug 49109 RealmBase.authenticate uses toString on byte array
catalina.realm.RealmBase.authenticate(String username, byte[] credentials) has the following code: return (authenticate(username, credentials.toString())); This looks wrong, as credentials is a byte array. It should probably be: return (authenticate(username, new String(credentials[,charset])));
resolved fixed
bcf0a01
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:43:37Z
2010-04-13T00:53:20Z
java/org/apache/catalina/realm/RealmBase.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 ...
49,110
Bug 49110 runtime.JspFactoryImpl$PageContextPool needs to be static
Findbugs says: Bug: org.apache.jasper.runtime.JspFactoryImpl$PageContextPool needs to be _static_ to avoid a deadly embrace with org.apache.jasper.runtime.JspFactoryImpl.localPool Pattern id: SIC_THREADLOCAL_DEADLY_EMBRACE, type: SIC, category: CORRECTNESS This class is an inner class, but should probably be a static i...
resolved fixed
b027259
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:47:57Z
2010-04-13T00:53:20Z
java/org/apache/jasper/runtime/JspFactoryImpl.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 ...
49,118
Bug 49118 Inefficient use of String concatenation in loop
null
resolved fixed
95a2eb8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T22:50:35Z
2010-04-14T10:13:20Z
java/javax/servlet/http/HttpServlet.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 ...
49,129
Bug 49129 DigestAuthenticator.md5Helper - possible incorrect lazy initialisation
Findbugs says: "This method contains an unsynchronized lazy initialization of a non-volatile static field. Because the compiler or processor may reorder instructions, threads are not guaranteed to see a completely initialized object, if the method can be called by multiple threads. You can make the field volatile to co...
resolved fixed
867605f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-14T23:13:45Z
2010-04-15T00:06:40Z
java/org/apache/catalina/authenticator/DigestAuthenticator.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 ...
49,150
Bug 49150 All primary sessions are deleted at BackupManager#stopInternal.
BackupManager#stopInternal is as follows. ===== protected synchronized void stopInternal() throws LifecycleException { super.stopInternal(); LazyReplicatedMap map = (LazyReplicatedMap)sessions; if ( map!=null ) { map.breakdown(); } cluster.removeManager(this); } ===== In Tomcat 7.0.0 RC1, super#stopInternal() is called...
resolved fixed
09f4e25
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-19T10:07:16Z
2010-04-19T06:53:20Z
java/org/apache/catalina/ha/session/BackupManager.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 ...
49,151
Bug 49151 ClassCastException in BackupManager#stopInternal.
In BackupManager#startInternal, When constructor of LazyReplicatedMap throws exception, sessions is not LazyReplicatedMap. Actually, AbstractReplicatedMap#init has the possibility of throwing RuntimeException. In BackupManager#stopInternal ClassCastException is thrown because AbstractReplicatedMap#breakdown is executed...
resolved fixed
fcb9861
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-19T10:12:02Z
2010-04-19T09:40:00Z
java/org/apache/catalina/ha/session/BackupManager.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 ...
49,141
Bug 49141 Impossible cast in naming.factory.SendMailFactory.getObjectInstance
naming.factory.SendMailFactory.getObjectInstance contains an impossible cast from javax.mail.internet.MimeMessage to javax.mail.internet.MimePart [Findbugs]
resolved fixed
7205c74
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-20T19:49:10Z
2010-04-17T02:06:40Z
java/javax/mail/internet/MimeMessage.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 ...
43,642
Bug 43642 Add prestartminSpareThreads attribute for Executor
The attached patch adds the boolean attribute prestartminSpareThreads to the Executor element. This allows the admin to prestart minspareThreads for this Executor during the start of Tomcat. The default value is false which is the old behaviour. A documentation patch for executor.xml can be created if there is interest...
resolved fixed
e7fb8fa
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-21T12:55:19Z
2007-10-17T11:20:00Z
java/org/apache/catalina/core/StandardThreadExecutor.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 ...
49,170
Bug 49170 Transmission of duplicated session in DeltaManager#handleGET_ALL_SESSIONS.
null
resolved fixed
f61100d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-22T10:57:55Z
2010-04-22T09: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 ...
49,171
Bug 49171 Avoid raw type warning in TagSupport
null
resolved fixed
8bd4d7a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-23T13:43:27Z
2010-04-22T09:53:20Z
java/javax/servlet/jsp/tagext/TagSupport.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 not u...
49,164
Bug 49164 junit test ignores failures in threads
null
resolved fixed
aa758d8
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-04-23T13:48:16Z
2010-04-21T17:13:20Z
test/org/apache/catalina/tribes/test/interceptors/TestOrderInterceptor.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 ...