id int64 1 6.5k | bug_id int64 2.03k 426k | summary stringlengths 9 251 | description stringlengths 1 32.8k ⌀ | report_time stringlengths 19 19 | report_timestamp int64 1B 1.39B | status stringclasses 6
values | commit stringlengths 7 9 | commit_timestamp int64 1B 1.39B | files stringlengths 25 32.8k | project_name stringclasses 6
values |
|---|---|---|---|---|---|---|---|---|---|---|
810 | 47,583 | Bug 47583 Fix occasional test failure in TestConcurrency | null | 2009-07-26 06:43:28 | 1,248,610,000 | resolved fixed | 278dedc | 1,248,980,000 | modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestConcurrency.java | Tomcat |
811 | 47,576 | Bug 47576 Javadoc errors - Exception name misspelt | The files FairBlockingQueue.java MultiLockFairBlockingQueue.java use * @throws UnsupportedOperation This should be * @throws UnsupportedOperationException | 2009-07-24 17:27:54 | 1,248,470,000 | resolved fixed | abbb922 | 1,248,980,000 | modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/FairBlockingQueue.java modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/MultiLockFairBlockingQueue.java | Tomcat |
812 | 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. | 2009-07-23 13:08:38 | 1,248,370,000 | resolved fixed | a9e00d5 | 1,248,980,000 | test/org/apache/catalina/connector/TestRequest.java test/org/apache/catalina/startup/TestTomcat.java | Tomcat |
813 | 47,568 | Bug 47568 TestTomcat fails to delete work directory | TestTomcat.setUp() creates a work directory, but does not delete it in tearDown() | 2009-07-23 12:56:58 | 1,248,370,000 | resolved fixed | cfb18a0 | 1,248,940,000 | test/org/apache/catalina/startup/TestTomcat.java | Tomcat |
814 | 41,824 | Bug 41824 Unable to use nested type in TLD | null | 2007-03-12 10:40:25 | 1,173,710,000 | resolved fixed | 768af9f | 1,248,460,000 | java/org/apache/jasper/compiler/JspUtil.java | Tomcat |
815 | 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... | 2009-03-24 15:20:17 | 1,237,920,000 | resolved fixed | 50d0e6e | 1,248,370,000 | java/org/apache/jasper/servlet/JspServlet.java | Tomcat |
816 | 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... | 2009-07-13 06:40:01 | 1,247,480,000 | resolved fixed | 9dc93f5 | 1,248,160,000 | java/org/apache/catalina/Valve.java | Tomcat |
817 | 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... | 2006-11-28 11:53:02 | 1,164,730,000 | resolved fixed | a9f0239 | 1,247,850,000 | java/org/apache/catalina/loader/WebappClassLoader.java | Tomcat |
818 | 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... | 2006-09-20 01:33:41 | 1,158,730,000 | resolved fixed | f0d447d | 1,247,770,000 | java/org/apache/catalina/ha/session/JvmRouteBinderValve.java | Tomcat |
819 | 47,515 | Bug 47515 Tomcat can't replicate session when it is started. | null | 2009-07-12 23:08:36 | 1,247,450,000 | resolved fixed | 83e98da | 1,247,750,000 | java/org/apache/catalina/ha/session/DeltaManager.java | Tomcat |
820 | 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; | 2006-08-31 18:57:30 | 1,157,070,000 | resolved fixed | 6f3e56e | 1,247,590,000 | java/org/apache/catalina/session/StandardSession.java | Tomcat |
821 | 47,524 | Bug 47524 McastServiceImpl executor is not dispatching events. | null | 2009-07-14 06:20:02 | 1,247,570,000 | resolved fixed | aa8a2d3 | 1,247,580,000 | java/org/apache/catalina/tribes/membership/McastServiceImpl.java java/org/apache/catalina/tribes/transport/ReceiverBase.java java/org/apache/catalina/tribes/util/ExecutorFactory.java | Tomcat |
822 | 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... | 2006-04-06 21:19:49 | 1,144,370,000 | resolved fixed | 80f8ec6 | 1,246,980,000 | java/org/apache/catalina/realm/GenericPrincipal.java java/org/apache/catalina/realm/JAASRealm.java java/org/apache/catalina/session/StandardSession.java | Tomcat |
823 | 47,478 | Bug 47478 DeltaSession ignores notifyListenersOnReplication when BackupManager is used. | null | 2009-07-06 03:05:17 | 1,246,860,000 | resolved fixed | c1099f7 | 1,246,900,000 | java/org/apache/catalina/ha/session/DeltaSession.java | Tomcat |
824 | 37,933 | Bug 37933 Bugs in Tomcat | null | 2005-12-16 07:00:20 | 1,134,730,000 | resolved fixed | 202a33e | 1,246,790,000 | java/org/apache/jasper/compiler/Generator.java java/org/apache/jasper/compiler/PageInfo.java | Tomcat |
825 | 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... | 2005-12-21 05:51:20 | 1,135,160,000 | resolved fixed | c6818a0 | 1,246,490,000 | java/org/apache/catalina/realm/JNDIRealm.java | Tomcat |
826 | 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... | 2009-06-27 05:17:55 | 1,246,090,000 | resolved fixed | d92da6e | 1,246,290,000 | modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/CheckOutThreadTest.java modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/DefaultProperties.java modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestSlowQueryReport.java | Tomcat |
827 | 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. | 2009-06-27 05:01:35 | 1,246,090,000 | resolved fixed | ef96fa2 | 1,246,200,000 | modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/PooledConnection.java | Tomcat |
828 | 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... | 2006-01-22 20:27:46 | 1,137,980,000 | resolved fixed | 76a4eb3 | 1,245,420,000 | java/org/apache/jasper/compiler/JspRuntimeContext.java | Tomcat |
829 | 47,308 | Bug 47308 Cannot join in the cluster membership. | null | 2009-06-03 03:39:06 | 1,244,010,000 | resolved fixed | 51fd68b | 1,245,340,000 | java/org/apache/catalina/tribes/membership/McastService.java java/org/apache/catalina/tribes/membership/McastServiceImpl.java | Tomcat |
830 | 47,389 | Bug 47389 DeltaManager doesn't do the session replication. (notifySessionListenersOnReplication=false) | null | 2009-06-18 03:39:55 | 1,245,310,000 | resolved fixed | c768090 | 1,245,340,000 | java/org/apache/catalina/ha/session/DeltaManager.java | Tomcat |
831 | 47,369 | Bug 47369 DeltaRequest is never reset. (use BackupManager) | null | 2009-06-15 03:34:59 | 1,245,050,000 | resolved fixed | b3e2be4 | 1,245,090,000 | java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java | Tomcat |
832 | 47,343 | Bug 47343 Fails re-deploying, when we update context.xml. | null | 2009-06-10 03:54:19 | 1,244,620,000 | resolved fixed | cc1f0dd | 1,244,730,000 | java/org/apache/catalina/startup/HostConfig.java | Tomcat |
833 | 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? | 2009-06-02 07:19:36 | 1,243,940,000 | resolved fixed | 468f370 | 1,244,240,000 | java/org/apache/catalina/session/StandardSession.java | Tomcat |
834 | 47,158 | Bug 47158 I think AccessLogValve has race condition problem | null | 2009-05-05 15:12:45 | 1,241,550,000 | resolved fixed | f00029e | 1,244,130,000 | java/org/apache/catalina/valves/AccessLogValve.java | Tomcat |
835 | 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... | 2009-05-18 18:13:50 | 1,242,680,000 | resolved wontfix | 36feee0 | 1,243,250,000 | java/org/apache/coyote/http11/Http11Processor.java | Tomcat |
836 | 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... | 2009-05-21 07:32:52 | 1,242,910,000 | resolved fixed | 9fa7640 | 1,242,930,000 | java/org/apache/catalina/tribes/membership/McastServiceImpl.java | Tomcat |
837 | 47,111 | Bug 47111 do caching the resources like the docu say it (StringManager) | null | 2009-04-28 08:54:49 | 1,240,920,000 | resolved wontfix | 96167ed | 1,241,310,000 | java/org/apache/tomcat/util/res/StringManager.java | Tomcat |
838 | 47,050 | Bug 47050 StandardHostValve.status unnecessarily HTML-escapes the error message | null | 2009-04-19 01:59:15 | 1,240,120,000 | resolved fixed | 1ad0501 | 1,241,190,000 | java/org/apache/catalina/core/StandardHostValve.java | Tomcat |
839 | 47,046 | Bug 47046 Shutdown does not unregister all MBeans | null | 2009-04-17 07:59:51 | 1,239,970,000 | resolved fixed | 54b9da9 | 1,241,050,000 | java/org/apache/catalina/connector/MapperListener.java java/org/apache/catalina/mbeans/MBeanUtils.java java/org/apache/catalina/mbeans/ServerLifecycleListener.java | Tomcat |
840 | 46,925 | Bug 46925 Nested groups in JNDI realm with non-recursive implementation | null | 2009-03-27 03:58:28 | 1,238,140,000 | resolved fixed | d04dd88 | 1,240,860,000 | java/org/apache/catalina/realm/JNDIRealm.java | Tomcat |
841 | 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 ... | 2005-12-16 01:58:15 | 1,134,720,000 | resolved fixed | 04cacaf | 1,239,900,000 | java/org/apache/jasper/runtime/PageContextImpl.java | Tomcat |
842 | 47,013 | Bug 47013 JSP not compiled at startup when used as a servlet | null | 2009-04-10 09:26:22 | 1,239,370,000 | resolved fixed | c8cbc28 | 1,239,750,000 | java/org/apache/catalina/core/Constants.java java/org/apache/catalina/core/StandardWrapper.java | Tomcat |
843 | 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 ... | 2007-06-04 14:13:14 | 1,180,980,000 | resolved fixed | 90e8d0d | 1,239,290,000 | java/org/apache/catalina/realm/JNDIRealm.java | Tomcat |
844 | 46,354 | Bug 46354 LIMIT_BUFFER setting causes arraycopy errors | null | 2008-12-05 09:01:51 | 1,228,490,000 | resolved fixed | 78a994a | 1,239,290,000 | java/org/apache/jasper/runtime/BodyContentImpl.java | Tomcat |
845 | 46,984 | Bug 46984 Server incorrectly reports a 501 error on bad method name. Should report 400 error. | null | 2009-04-07 07:44:46 | 1,239,100,000 | resolved fixed | 42a093b | 1,239,290,000 | java/org/apache/coyote/http11/Http11AprProcessor.java java/org/apache/coyote/http11/Http11NioProcessor.java java/org/apache/coyote/http11/Http11Processor.java java/org/apache/coyote/http11/InternalAprInputBuffer.java java/org/apache/coyote/http11/InternalInputBuffer.java java/org/apache/coyote/http11/InternalNioInputBu... | Tomcat |
846 | 46,961 | Bug 46961 org.apache.catalina.loader.WebappClassLoader throws exception related to Java 6 Bug 6434149 | null | 2009-04-03 07:15:39 | 1,238,760,000 | resolved fixed | f109fb9 | 1,239,280,000 | java/org/apache/catalina/loader/WebappClassLoader.java | Tomcat |
847 | 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. | 2009-03-25 03:07:44 | 1,237,960,000 | resolved fixed | 80b90ee | 1,239,280,000 | java/org/apache/jasper/compiler/Generator.java | Tomcat |
848 | 46,562 | Bug 46562 Reader not closed | SHTML files are locked when using windows. Closing the reader solves the problem. | 2009-01-19 08:17:14 | 1,232,370,000 | resolved fixed | 6ecc35d | 1,239,280,000 | java/org/apache/catalina/ssi/SSIServlet.java | Tomcat |
849 | 46,998 | Bug 46998 small fix to TaskThreadFactory | null | 2009-04-08 11:35:20 | 1,239,200,000 | resolved fixed | 0c48c98 | 1,239,270,000 | java/org/apache/tomcat/util/threads/TaskThreadFactory.java | Tomcat |
850 | 46,997 | Bug 46997 small fix to TaskQueue | null | 2009-04-08 11:30:59 | 1,239,200,000 | resolved fixed | 4e1c4b2 | 1,239,270,000 | java/org/apache/tomcat/util/threads/TaskQueue.java | Tomcat |
851 | 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... | 2009-04-08 01:37:54 | 1,239,170,000 | resolved fixed | a228c06 | 1,239,210,000 | java/org/apache/jk/server/JkCoyoteHandler.java | Tomcat |
852 | 46,990 | Bug 46990 Synchronize target can be changed midway | null | 2009-04-07 18:52:10 | 1,239,140,000 | resolved fixed | f1fd999 | 1,239,210,000 | java/org/apache/catalina/core/StandardContext.java java/org/apache/catalina/core/StandardHost.java java/org/apache/catalina/tribes/membership/Membership.java java/org/apache/catalina/util/InstanceSupport.java java/org/apache/catalina/util/LifecycleSupport.java | Tomcat |
853 | 46,988 | Bug 46988 JMXAccessorTask String constants should be final | null | 2009-04-07 17:18:48 | 1,239,140,000 | resolved fixed | 81ebe8f | 1,239,200,000 | java/org/apache/catalina/ant/jmx/JMXAccessorTask.java | Tomcat |
854 | 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. | 2009-04-07 17:14:51 | 1,239,140,000 | resolved fixed | f497f12 | 1,239,200,000 | java/org/apache/jasper/Constants.java java/org/apache/jasper/compiler/PageInfo.java java/org/apache/jasper/xmlparser/ParserUtils.java | Tomcat |
855 | 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... | 2009-04-03 18:57:28 | 1,238,800,000 | resolved fixed | 243aa86 | 1,239,200,000 | java/org/apache/catalina/session/ManagerBase.java | Tomcat |
856 | 46,958 | Bug 46958 manager XML interface hard-coded path in XSL transformation | null | 2009-04-02 16:55:36 | 1,238,710,000 | resolved fixed | a9a58fb | 1,239,190,000 | java/org/apache/catalina/manager/Constants.java | Tomcat |
857 | 46,933 | Bug 46933 Using Java 1.5 in StringManager | null | 2009-03-27 15:34:14 | 1,238,180,000 | resolved fixed | 23c47da | 1,239,190,000 | java/org/apache/tomcat/util/res/StringManager.java test/org/apache/tomcat/util/res/TestStringManager.java | Tomcat |
858 | 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 ... | 2009-04-07 07:32:55 | 1,239,100,000 | resolved fixed | 360f8eb | 1,239,190,000 | java/org/apache/catalina/valves/AccessLogValve.java | Tomcat |
859 | 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... | 2007-02-13 20:46:54 | 1,171,420,000 | resolved fixed | f36a2c4 | 1,238,150,000 | java/org/apache/jasper/compiler/Compiler.java | Tomcat |
860 | 46,822 | Bug 46822 Avoid redundant instantiations in StandardContext | null | 2009-03-08 22:56:01 | 1,236,570,000 | resolved fixed | b10d9da | 1,238,070,000 | java/org/apache/catalina/core/StandardContext.java | Tomcat |
861 | 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. | 2009-03-16 21:34:33 | 1,237,250,000 | resolved fixed | fae26ce | 1,238,070,000 | java/org/apache/catalina/core/StandardServer.java java/org/apache/catalina/tribes/util/UUIDGenerator.java test/org/apache/catalina/tribes/demos/LoadTest.java test/org/apache/catalina/tribes/demos/MapDemo.java test/org/apache/catalina/tribes/test/channel/TestDataIntegrity.java test/org/apache/catalina/tribes/test/channe... | Tomcat |
862 | 46,875 | Bug 46875 CometConnectionManagerValve: concurrent access on session object when calling HttpSession.invalidate() | When calling invalidate() on an valid HttpSession object CometConnectionManagerValve methods sessionDestroy(HttpSessionEvent se) and event(Request request, Response response, CometEvent event) are called concurrently. So either a CometEvent with EventType.END and EventSubType.SESSION_END is never signaled via sessionDe... | 2009-03-19 02:15:04 | 1,237,440,000 | resolved wontfix | 08f7a5f | 1,238,010,000 | java/org/apache/catalina/valves/CometConnectionManagerValve.java | Tomcat |
863 | 46,666 | Bug 46666 Why is disableUploadTimeout and KeepAliveTimeout correlated in Http11 Connector? | In Http11Processor.java while (started && !error && keepAlive) { // Parsing the request header try { if (!disableUploadTimeout && keptAlive) { if (keepAliveTimeout > 0) { socket.setSoTimeout(keepAliveTimeout); } else if (soTimeout > 0) { socket.setSoTimeout(soTimeout); } } inputBuffer.parseRequestLine(); request.setSta... | 2009-02-04 08:28:34 | 1,233,750,000 | resolved fixed | ac6369a | 1,234,540,000 | java/org/apache/coyote/http11/Http11Processor.java | Tomcat |
864 | 46,696 | Bug 46696 Missing AL headers | The following files in tomcat-trunk don't have AL headers; as far as I can tell, they should: modules/jdbc-pool/sign.sh modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java | 2009-02-11 09:41:23 | 1,234,360,000 | resolved fixed | 3b1b7b3 | 1,234,450,000 | modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/StarvationTest.java | Tomcat |
865 | 39,396 | Bug 39396 OPTIONS request on directory with no default file reports an incorrect list of allowed HTTP verbs | When an "options" http request is made to Tomcat to a directory that has no default file (like index.jsp) in it, Tomcat reports a full list of allowed verbs, when in fact, most of them are NOT allowed. For example, a request to a generic img directory: OPTIONS /img/ HTTP/1.0 Cookie: JSESSIONID=C46C2E18BE95AD91828C9370C... | 2006-04-24 15:15:57 | 1,145,910,000 | resolved fixed | 9752018 | 1,234,210,000 | java/org/apache/catalina/connector/RequestFacade.java java/org/apache/catalina/servlets/DefaultServlet.java | Tomcat |
866 | 38,570 | Bug 38570 if docBase path contains "webapps", a backslash is inserted | null | 2006-02-08 15:46:45 | 1,139,430,000 | resolved fixed | 8d2b8ff | 1,234,210,000 | java/org/apache/catalina/startup/ContextConfig.java | Tomcat |
867 | 38,553 | Bug 38553 Wrong HTTP code for failed CLIENT-CERT authentication | server.xml: =========== I set clientAuth to "want" tomcat-user.xml: ================ I create a role and an user with the ssl certificate metadata web.xml: ======== For a private URL on my webseite, I create a security constraint like this one: <security-constraint> <web-resource-collection> <web-resource-name>App</web... | 2006-02-07 16:54:17 | 1,139,350,000 | resolved fixed | 156f1ca | 1,233,740,000 | java/org/apache/catalina/authenticator/SSLAuthenticator.java | Tomcat |
868 | 38,197 | Bug 38197 taglib pool bug when tag is used with jsp:attribute | null | 2006-01-09 15:53:09 | 1,136,840,000 | resolved fixed | 2824a70 | 1,233,740,000 | java/org/apache/jasper/compiler/Generator.java | Tomcat |
869 | 46,606 | Bug 46606 WebdavServlet | null | 2009-01-26 07:18:21 | 1,232,970,000 | resolved fixed | f0bd732 | 1,233,730,000 | java/org/apache/catalina/servlets/WebdavServlet.java | Tomcat |
870 | 46,564 | Bug 46564 .tagx files don't compile if the document and page encoding casing differs | null | 2009-01-20 00:34:11 | 1,232,430,000 | resolved fixed | 7d7f757 | 1,233,290,000 | java/org/apache/jasper/compiler/Validator.java | Tomcat |
871 | 46,471 | Bug 46471 Compiled tag files from different tag libraries share the same package | null | 2009-01-04 16:12:40 | 1,231,100,000 | resolved fixed | 3aaac85 | 1,231,180,000 | java/org/apache/jasper/compiler/ImplicitTagLibraryInfo.java java/org/apache/jasper/compiler/JspUtil.java java/org/apache/jasper/compiler/ParserController.java java/org/apache/jasper/compiler/TagFileProcessor.java java/org/apache/jasper/compiler/TagLibraryInfoImpl.java | Tomcat |
872 | 46,462 | Bug 46462 JSPWiki JSP compilation prevented by org.apache.jasper.Constants.JSP_PACKAGE_NAME | null | 2009-01-01 20:29:15 | 1,230,860,000 | resolved fixed | 1ca03ff | 1,230,890,000 | java/org/apache/jasper/servlet/JasperLoader.java | Tomcat |
873 | 46,298 | Bug 46298 JDBCRealm.open() throws NullPointerException if the specified driver doesn't handle the specified JDBC URL | null | 2008-11-25 23:25:56 | 1,227,670,000 | resolved fixed | e31998a | 1,230,510,000 | java/org/apache/catalina/realm/JDBCRealm.java | Tomcat |
874 | 46,261 | Bug 46261 Context with %2F in name causes tomcat crash on shutdown | Context with %2F in name causes tomcat crash on shutdown Several years ago I worked on integrating tomcat 5.5 into our web application management infrastructure. During the process I fixed several tomcat 5.5 bugs, but apparently never sent the fixes upstream. Oops. Our application needs to be deployed to create a URL t... | 2008-11-21 08:34:21 | 1,227,270,000 | resolved fixed | 85fc30c | 1,230,340,000 | java/org/apache/catalina/core/StandardContext.java java/org/apache/catalina/manager/HTMLManagerServlet.java | Tomcat |
875 | 46,381 | Bug 46381 Coerce EL expression to java.lang.Object breaks expression concatenation | null | 2008-12-11 07:13:00 | 1,229,000,000 | resolved fixed | 24bcb47 | 1,230,330,000 | java/org/apache/jasper/compiler/Generator.java | Tomcat |
876 | 46,357 | Bug 46357 FarmWarDeployer has nonsense condition | FarmWarDeployer has the following code at line 152: if(econtainer == null && econtainer instanceof Engine) { There's clearly something wrong with that condition. | 2008-12-06 05:48:33 | 1,228,560,000 | resolved fixed | 7e6a2ec | 1,230,330,000 | java/org/apache/catalina/ha/deploy/FarmWarDeployer.java | Tomcat |
877 | 46,397 | Bug 46397 Potential memory leak with TagHandlers and JspIdConsumer | null | 2008-12-15 00:43:53 | 1,229,320,000 | resolved fixed | 5277185 | 1,230,060,000 | java/org/apache/jasper/compiler/Generator.java | Tomcat |
878 | 46,403 | Bug 46403 Persistent cookies written by 6.0.18 do not work in Internet Explorer or Safari | null | 2008-12-15 13:46:47 | 1,229,370,000 | resolved fixed | 99c5ca6 | 1,230,040,000 | java/org/apache/tomcat/util/http/ServerCookie.java | Tomcat |
879 | 46,408 | Bug 46408 Invalid cast in SecurityUtil | In case of PrivilegedActionException thrown in: private static void execute(final Method method, final Object targetObject, final Object[] targetArguments, Principal principal) method, there is a false assumption in catch block, that PrivilegedActionException.getException() will return InvocationTargetException. It cou... | 2008-12-16 15:22:51 | 1,229,460,000 | resolved fixed | a1e4c86 | 1,229,700,000 | java/org/apache/catalina/security/SecurityUtil.java | Tomcat |
880 | 46,247 | Bug 46247 SVN property patches | null | 2008-11-19 18:16:54 | 1,227,140,000 | resolved fixed | 408175f | 1,228,490,000 | modules/bayeux/java/org/apache/cometd/bayeux/Bayeux.java modules/bayeux/java/org/apache/cometd/bayeux/Channel.java modules/bayeux/java/org/apache/cometd/bayeux/Client.java modules/bayeux/java/org/apache/cometd/bayeux/DataFilter.java modules/bayeux/java/org/apache/cometd/bayeux/Listener.java modules/bayeux/java/org/apac... | Tomcat |
881 | 42,077 | Bug 42077 the iterator from javax.el.CompositeELResolver#getFeatureDescriptor() must not return null values | null | 2007-04-10 03:03:51 | 1,176,190,000 | resolved fixed | 8d5db6f | 1,227,480,000 | java/javax/el/CompositeELResolver.java | Tomcat |
882 | 42,693 | Bug 42693 JSP-Generation error with recursive tagfile structure | addendum: it's Version 6.13 (not available in combobox above) scenario: ========= a menu is decribed by a tree structure; rendering the menu is done by a tagfile 'render_menuitem', which renders the current item either as a leaf item (clicking on it causes an action) or as a node item (clicking on it opens another next... | 2007-06-18 10:10:02 | 1,182,180,000 | resolved fixed | b5a5094 | 1,227,480,000 | java/org/apache/jasper/compiler/Compiler.java | Tomcat |
883 | 42,707 | Bug 42707 add host alias using jmx doesn't take affect until restart | null | 2007-06-20 14:46:49 | 1,182,370,000 | resolved fixed | 23a8ba0 | 1,226,200,000 | java/org/apache/catalina/connector/MapperListener.java java/org/apache/tomcat/util/http/mapper/Mapper.java | Tomcat |
884 | 42,673 | Bug 42673 SSI virtual include broken for context path with slashes | If the context path of an application contains slashes (e.g. "a/b") the method getPathWithoutContext of class org.apache.catalina.ssi.SSIServletExternalResolver simply cuts from the second slash, so for url "/a/b/do?.." it tries to include "b/do?.." instead of "do?..". The patch is to include the context path and strip... | 2007-06-15 05:08:34 | 1,181,900,000 | resolved fixed | 4d5cca1 | 1,226,190,000 | java/org/apache/catalina/ssi/SSIServletExternalResolver.java | Tomcat |
885 | 46,011 | Bug 46011 Cannot access to Principal via Subject.getSubject(AccessController.getContext()) | Cannot access to Principal via Subject.getSubject(AccessController.getContext()). Problem is that in method internalDoFilter of ApplicationFilterChain in call of filter chain the code determinate the Principal but don't use it: if( Globals.IS_SECURITY_ENABLED ) { final ServletRequest req = request; final ServletRespons... | 2008-10-15 02:56:56 | 1,224,050,000 | resolved fixed | e148369 | 1,225,900,000 | java/org/apache/catalina/core/ApplicationFilterChain.java java/org/apache/catalina/security/SecurityUtil.java | Tomcat |
886 | 46,047 | Bug 46047 Issue when using include directive inside tag files that are inside jar files | null | 2008-10-21 02:20:44 | 1,224,570,000 | resolved fixed | 38ef38d | 1,225,750,000 | java/org/apache/jasper/compiler/ParserController.java | Tomcat |
887 | 42,409 | Bug 42409 Extra response headers not sent when using custom error page | If I create a servlet that does the following: response.setHeader("X-BUG", "Value"); response.sendError(HttpServletResponse.SC_BAD_REQUEST); If I use the tomcat default error page for 400 responses, the response will contain the header "X-BUG" with value "Value". However, if I create a custom error page, the response h... | 2007-05-14 09:03:17 | 1,179,150,000 | resolved fixed | e0489c8 | 1,225,720,000 | java/org/apache/catalina/core/StandardHostValve.java | Tomcat |
888 | 46,051 | Bug 46051 Servlet response writer does not respect line.separator system property | null | 2008-10-21 10:54:42 | 1,224,600,000 | resolved fixed | f4bef20 | 1,225,590,000 | java/org/apache/catalina/connector/CoyoteWriter.java | Tomcat |
889 | 46,105 | Bug 46105 URIEncoding doesn't affect after form-authentication redirect | How to reproduce bug. Configure tomcat connector with URIEncoding=UTF-8 attribute. Make a simple page that write out any request parameter. Configure this page as protected with form-based authentication. Try to access page, e.g. /site/page.jsp?q=%xx%yy%zz%tt where q=%xx%yy%zz is value in UTF-8 charset. When page is be... | 2008-10-27 23:37:52 | 1,225,170,000 | resolved fixed | d9def07 | 1,225,410,000 | java/org/apache/catalina/authenticator/FormAuthenticator.java | Tomcat |
890 | 46,075 | Bug 46075 FileUpload memory usage | The DefaultFileItem class in pacakge org.apache.tomcat.util.http.fileupload creates a ByteArrayOutputStream of the full threshold size for every control on the submitted form. I have a form with 63 controls (checkboxes, text boxes and one File input), and I set the threshold to 20 Meg to allow upload of large image fil... | 2008-10-23 03:35:53 | 1,224,750,000 | resolved fixed | 85e71cf | 1,225,150,000 | java/org/apache/tomcat/util/http/fileupload/DeferredFileOutputStream.java | Tomcat |
891 | 46,085 | Bug 46085 Session are incorrectly expired due to thread unsafe code | null | 2008-10-24 12:53:09 | 1,224,870,000 | resolved fixed | 6344b96 | 1,225,130,000 | java/org/apache/catalina/session/StandardSession.java | Tomcat |
892 | 46,096 | Bug 46096 DefaultAnnotationProcessor.processAnnotations should use doPrivileged to call getDeclaredFields | If tomcat is running with a SecurityManager, and a JSP uses PageContext.forward, DefaultAnnotationProcessor code can be called with untristed code on the call stack. The processAnnotations method contains the line: Field[] fields = instance.getClass().getDeclaredFields(); getDeclaredFields() is subject to security chec... | 2008-10-27 05:44:55 | 1,225,100,000 | resolved fixed | 428c03b | 1,225,130,000 | java/org/apache/catalina/core/DefaultInstanceManager.java | Tomcat |
893 | 45,735 | Bug 45735 Updated ResourceAttributes.getETag | After looking at a user's list post, I noticed the implementation was not consistent with the other getters (like getName). I propose changing it to: public String getETag(boolean strong) { if (strong) { // The strong ETag must always be calculated by the resources if (strongETag != null) return strongETag; if (attribu... | 2008-09-03 10:48:23 | 1,220,450,000 | resolved fixed | e40c910 | 1,224,880,000 | java/org/apache/naming/resources/ResourceAttributes.java | Tomcat |
894 | 45,977 | Bug 45977 Duplicate comment in code - CoyoteAdapter.java | The XXX comments below seem to say the same thing. Not sure what the XXX represents. /** * Parse additional request parameters. */ protected boolean postParseRequest(org.apache.coyote.Request req, Request request, org.apache.coyote.Response res, Response response) throws Exception { // XXX the processor needs to set a ... | 2008-10-09 08:28:02 | 1,223,560,000 | resolved fixed | e277f6c | 1,223,590,000 | java/org/apache/catalina/connector/CoyoteAdapter.java | Tomcat |
895 | 45,951 | Bug 45951 Provide support for renaming JSESSIONID | null | 2008-10-05 15:15:52 | 1,223,230,000 | resolved fixed | e85ed8c | 1,223,320,000 | java/org/apache/catalina/Globals.java java/org/apache/catalina/authenticator/Constants.java java/org/apache/jasper/Constants.java | Tomcat |
896 | 45,933 | Bug 45933 Error processing TLD file in webapp with XML parser | null | 2008-10-01 23:51:18 | 1,222,920,000 | resolved fixed | f69637f | 1,223,030,000 | java/org/apache/catalina/core/StandardContext.java java/org/apache/catalina/startup/TldConfig.java | Tomcat |
897 | 45,851 | Bug 45851 FarmWarDeployer fails to properly unpack copied war on target node | null | 2008-09-19 22:17:57 | 1,221,880,000 | resolved fixed | c340c69 | 1,222,450,000 | java/org/apache/catalina/ha/deploy/FarmWarDeployer.java java/org/apache/catalina/ha/deploy/FileMessageFactory.java | Tomcat |
898 | 45,026 | Bug 45026 Custom HTTP-Error codes get remapped to 500er codes | We use Apache 2.2.8 with mod_JK 1.2.26 as a load-balancer for a Tomcat 5.5 cluster. We use Custom HTTP-Error codes like 450 for authentication-purposes. Those codes get remapped to 500. The Error-Code 450 is in the RFC2616 described as valid return code so this is a bug. The custom error-codes worked fine in Apache 1.3... | 2008-05-18 04:16:12 | 1,211,100,000 | resolved fixed | 03097fa | 1,221,850,000 | java/org/apache/jk/common/JkInputStream.java | Tomcat |
899 | 45,419 | Bug 45419 Return Accept-Ranges from DefaultServlet | Currently the DefaultServlet accepts the "Ranges" request header, but doesn't indicate this in its response by returning "Accept-Ranges: bytes". Although this is not required in HTTP/1.1, setting the header is required in order for the Adobe Acrobat plugin to correctly handle Linearized PDF's (which can speed download ... | 2008-07-17 07:38:07 | 1,216,290,000 | resolved fixed | 633545f | 1,221,680,000 | java/org/apache/catalina/servlets/DefaultServlet.java | Tomcat |
900 | 45,441 | Bug 45441 Matching of relevant servlet filters fails when request is forwarded... | I ran into a situation where Tomcat will not execute appropriate filters on a request that has been forwarded. I'm using the handy URLRewriteFilter implementation (from tuckey.org). When I forwarded a request internally, filters that had a matching url-pattern (in the web.xml file) and with a dispatcher setting of both... | 2008-07-20 10:54:40 | 1,216,570,000 | resolved fixed | 2c0fffe | 1,221,650,000 | java/org/apache/catalina/core/ApplicationDispatcher.java | Tomcat |
901 | 45,823 | Bug 45823 AccessLogValve doesn't correctly handles combined log format (with patch) | null | 2008-09-17 02:20:05 | 1,221,630,000 | resolved fixed | 678b516 | 1,221,650,000 | java/org/apache/catalina/valves/AccessLogValve.java | Tomcat |
902 | 45,618 | Bug 45618 Selector is not closed. | null | 2008-08-11 22:45:15 | 1,218,510,000 | resolved fixed | d69b378 | 1,220,390,000 | java/org/apache/catalina/tribes/transport/nio/ParallelNioSender.java | Tomcat |
903 | 45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | 2008-07-16 17:49:44 | 1,216,240,000 | resolved fixed | 83fe69a | 1,220,390,000 | java/org/apache/cometd/bayeux/Bayeux.java java/org/apache/cometd/bayeux/Channel.java java/org/apache/cometd/bayeux/Client.java java/org/apache/cometd/bayeux/DataFilter.java java/org/apache/cometd/bayeux/Listener.java java/org/apache/cometd/bayeux/Message.java java/org/apache/cometd/bayeux/SecurityPolicy.java java/org/a... | Tomcat |
904 | 45,628 | Bug 45628 ExtensionValidator doesn't handle wrapped lines in MANIFEST.MF | null | 2008-08-13 12:47:56 | 1,218,650,000 | resolved fixed | 3773ec4 | 1,220,370,000 | java/org/apache/catalina/util/ManifestResource.java | Tomcat |
905 | 45,666 | Bug 45666 JspContextWrapper contains infinite loop in include(String relativeUrlPath, boolean flush) | public void include(String relativeUrlPath, boolean flush) throws ServletException, IOException { include(relativeUrlPath, false); // XXX } just calls itself it seems. Perhaps this should be (just a guess): public void include(String relativeUrlPath, boolean flush) throws ServletException, IOException { invokingJspCtxt... | 2008-08-21 06:47:17 | 1,219,320,000 | resolved fixed | ccc1014 | 1,220,220,000 | java/org/apache/jasper/runtime/JspContextWrapper.java | Tomcat |
906 | 45,648 | Bug 45648 Function 'f:length' not found | null | 2008-08-18 19:54:44 | 1,219,100,000 | resolved fixed | 6d40691 | 1,220,210,000 | java/org/apache/el/parser/ELParser.java | Tomcat |
907 | 45,691 | Bug 45691 Jasper creates duplicate variable names | Sometimes a JSP's Java code, which have been generated by Jasper, has duplicate variable names. Therefore the JSP cannot be compiled and tomcat delivers an HTTP status code 500. You get an error message like this org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 10 in the js... | 2008-08-26 07:23:33 | 1,219,750,000 | resolved fixed | 337d6a6 | 1,220,190,000 | java/org/apache/jasper/compiler/Compiler.java java/org/apache/jasper/compiler/JspUtil.java java/org/apache/jasper/compiler/Node.java java/org/apache/jasper/compiler/TagPluginManager.java | Tomcat |
908 | 45,074 | Bug 45074 Add configuration parameters for finer tuning of Http11AprProtocol thread usage | null | 2008-05-23 15:44:19 | 1,211,570,000 | resolved fixed | 6a1f316 | 1,219,820,000 | java/org/apache/coyote/http11/Http11AprProtocol.java | Tomcat |
909 | 44,809 | Bug 44809 Improve AprLifecycleListener Error Messages | null | 2008-04-11 10:18:59 | 1,207,920,000 | resolved fixed | 46055c5 | 1,219,820,000 | java/org/apache/catalina/core/AprLifecycleListener.java | Tomcat |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.