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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
42,181 | Bug 42181 ArrayIndexOutOfBoundsException in parseChunkHeader | Apr 22, 2007 11:53:32 AM org.apache.coyote.http11.Http11Processor process SEVERE: Error finishing request java.lang.ArrayIndexOutOfBoundsException: -28 at org.apache.coyote.http11.filters.ChunkedInputFilter.parseChunkHeader(ChunkedInputFilter.java:256) at org.apache.coyote.http11.filters.ChunkedInputFilter.doRead(Chunk... | resolved fixed | cd05aa1 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-08-27T23:04:11Z | 2007-04-22T02:46:40Z | test/org/apache/tomcat/util/buf/TestHexUtils.java | |
53,793 | Bug 53793 Change webapp links in Manager to point to /appname/ instead of /appname | The first column of the table that lists Web Applications in Tomcat Manager webapp contains links to those applications, e.g. <a href="/examples">/examples</a> When the link is clicked and browser navigates to "/examples", it results in 302 redirect to "/examples/". It would be better to change that link to point direc... | resolved fixed | fcc3d65 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-08-28T22:03:33Z | 2012-08-29T03:13:20Z | java/org/apache/catalina/manager/HTMLManagerServlet.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 ... |
53,800 | Bug 53800 Infinte loop cause by FileDirContext in a CDI/Weld project when using Eclipse's "Server modules without publishing" | null | resolved fixed | 44eabba | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-08-30T06:43:52Z | 2012-08-30T09:46: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 ... |
53,801 | Bug 53801 Nondeterministic behaviour of security constraints | null | resolved fixed | 95d7a0f | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-08-30T22:55:20Z | 2012-08-30T12:33: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 ... |
53,828 | Bug 53828 StreamInbound.closeOutboundConnection(WsFrame) closes with an opcode instead of status | 201 private void closeOutboundConnection(WsFrame frame) throws IOException { 202 try { 203 getWsOutbound().close(frame); 204 } finally { 205 doOnClose(Constants.OPCODE_CLOSE); 206 } 207 } Line 205 uses the close opcode instead of a valid status (Constants.STATUS_*). Not sure of the exact context of this called but it s... | resolved fixed | a81d941 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-04T20:03:25Z | 2012-09-04T20:20:00Z | java/org/apache/catalina/websocket/StreamInbound.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 ... |
53,713 | Bug 53713 Performance tuning solution for JspReader | null | resolved fixed | 5fccf68 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-05T22:06:32Z | 2012-08-14T10:26:40Z | java/org/apache/jasper/compiler/JspReader.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 ... |
53,713 | Bug 53713 Performance tuning solution for JspReader | null | resolved fixed | 5fccf68 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-05T22:06:32Z | 2012-08-14T10:26:40Z | java/org/apache/jasper/compiler/Mark.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 ... |
52,777 | Bug 52777 Automatically shut down old versions in parallel deployment | Under parallel deployment, when an older version in an application has zero sessions, shut it down automatically to release tomcat and JVM resources. Christopher Schultz suggested these approaches might be possible (on the Tomcat user list): 1. Modify the parallel deployment code to register an MBean NotificationListen... | resolved fixed | 97cefcc | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-08T21:00:32Z | 2012-02-27T08: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 ... |
52,777 | Bug 52777 Automatically shut down old versions in parallel deployment | Under parallel deployment, when an older version in an application has zero sessions, shut it down automatically to release tomcat and JVM resources. Christopher Schultz suggested these approaches might be possible (on the Tomcat user list): 1. Modify the parallel deployment code to register an MBean NotificationListen... | resolved fixed | 97cefcc | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-08T21:00:32Z | 2012-02-27T08: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 ... |
52,777 | Bug 52777 Automatically shut down old versions in parallel deployment | Under parallel deployment, when an older version in an application has zero sessions, shut it down automatically to release tomcat and JVM resources. Christopher Schultz suggested these approaches might be possible (on the Tomcat user list): 1. Modify the parallel deployment code to register an MBean NotificationListen... | resolved fixed | 97cefcc | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-08T21:00:32Z | 2012-02-27T08: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 ... |
53,863 | Bug 53863 Unable to override default servlet when using Tomcat in embedded mode | An implementation of ServletContainerInitializer can't add a mapping to "/" because the default servlet is loaded first, as first reported in 51278: public final class SampleServletContainerInitializer implements ServletContainerInitializer { public void onStartup(final Set<Class<?>> c, final ServletContext ctx) throws... | resolved fixed | 7f6f99e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-16T18:15:21Z | 2012-09-13T07:06:40Z | java/org/apache/catalina/startup/Tomcat.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
53,854 | Bug 53854 DefaultServlet directory listings for aliased directories do not seem to work | null | resolved fixed | a3e0f09 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-30T19:45:00Z | 2012-09-12T00:33:20Z | java/org/apache/naming/resources/BaseDirContext.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 ... |
53,854 | Bug 53854 DefaultServlet directory listings for aliased directories do not seem to work | null | resolved fixed | a3e0f09 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-30T19:45:00Z | 2012-09-12T00:33:20Z | 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 ... |
53,854 | Bug 53854 DefaultServlet directory listings for aliased directories do not seem to work | null | resolved fixed | a3e0f09 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-09-30T19:45:00Z | 2012-09-12T00:33:20Z | 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 ... |
53,986 | Bug 53986 Comment end tag preceded directly by a dash causes JSP fail compilation | null | resolved fixed | 88d8dd5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-10T14:19:40Z | 2012-10-09T22:00:00Z | java/org/apache/jasper/compiler/JspReader.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 ... |
53,986 | Bug 53986 Comment end tag preceded directly by a dash causes JSP fail compilation | null | resolved fixed | 88d8dd5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-10T14:19:40Z | 2012-10-09T22:00:00Z | test/org/apache/jasper/compiler/TestJspReader.java | |
53,993 | Bug 53993 NPE in AccessLogValve | During a load test of tomcat 7.0.30, we occasionally see NPEs from the AccessLogValve. Some of the requests that are being executed as part of the load test call HttpSession.invalidate. I mention this because the code in question appears to be susceptible to multithreaded manipulation of the session. I think the fix sh... | resolved fixed | 39c4270 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-13T15:56:21Z | 2012-10-12T00:00:00Z | java/org/apache/catalina/valves/AccessLogValve.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,010 | Bug 54010 Suggestion for code improvement (avoiding potential bug) | In connectors/jk/java/org/apache/jk/common/HandlerRequest.java coyote.Request's schemeMB is assigned in 2 places. 1st place: 400 boolean isSSL = msg.getByte() != 0; 401 if( isSSL ) { 402 // XXX req.setSecure( true ); 403 req.scheme().setString("https"); 404 } 2nd place: 518 case AjpConstants.SC_A_SSL_CERT : 519 req.sch... | resolved fixed | 9f04094 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-22T22:48:38Z | 2012-10-16T06:46:40Z | java/org/apache/coyote/ajp/AbstractAjpProcessor.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... |
54,045 | Bug 54045 ReplicatedMap don't like TcpFailureDetector in static configuration | Tribes stack using: * TcpPingInterceptor * TcpFailureDetector * MessageDispatchInterceptor * StaticMembershipInterceptor Do not work well in static cluster. First side (ie one thread): * call to TcpFailureDetector.heartbeat() * call to checkMembers(false) * call to performBasicCheck() in synchronized(membership) * in p... | resolved fixed | d2b41b5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:51:10Z | 2012-10-23T19:20:00Z | java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.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 ... |
54,012 | Bug 54012 No "pageContext" in tag files' generated java code when using code generation by JSTL tagplugin "Set" | null | resolved fixed | a0ff3f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:57:13Z | 2012-10-16T12:20:00Z | java/org/apache/jasper/compiler/Compiler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,012 | Bug 54012 No "pageContext" in tag files' generated java code when using code generation by JSTL tagplugin "Set" | null | resolved fixed | a0ff3f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:57:13Z | 2012-10-16T12:20:00Z | java/org/apache/jasper/compiler/PageInfo.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,012 | Bug 54012 No "pageContext" in tag files' generated java code when using code generation by JSTL tagplugin "Set" | null | resolved fixed | a0ff3f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:57:13Z | 2012-10-16T12:20:00Z | java/org/apache/jasper/compiler/TagPluginManager.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 ... |
54,012 | Bug 54012 No "pageContext" in tag files' generated java code when using code generation by JSTL tagplugin "Set" | null | resolved fixed | a0ff3f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:57:13Z | 2012-10-16T12:20:00Z | java/org/apache/jasper/compiler/tagplugin/TagPluginContext.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 ... |
54,012 | Bug 54012 No "pageContext" in tag files' generated java code when using code generation by JSTL tagplugin "Set" | null | resolved fixed | a0ff3f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T11:57:13Z | 2012-10-16T12:20:00Z | java/org/apache/jasper/tagplugins/jstl/core/Set.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 ... |
54,017 | Bug 54017 new String instance is generated for constant string in Generator.convertString | If the target class is "Object.class", the generator generates "new String(" + quoted + ")"; as attribute value for Tag Handler. How about using quoted directly same as when the target class is "Object.class"? Creating a String instance will cause some overhead from memory allocation and hash code recaluation when it i... | resolved fixed | 095a403 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T12:14:09Z | 2012-10-17T13:20:00Z | java/org/apache/jasper/compiler/Generator.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,022 | Bug 54022 CometEvent.END event is not sent on a suspended socket disconnect when running with Tomcat Native (tcnative-1.dll) on Windows Vista / Windows Server 2008 or newer. | null | resolved fixed | 874c332 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-25T22:12:33Z | 2012-10-17T21:40:00Z | java/org/apache/coyote/AbstractProtocol.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... |
54,054 | Bug 54054 2 CGIServlet's with different Parameter passShellEnvironment | null | resolved fixed | 05fe671 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-26T19:58:57Z | 2012-10-26T11:13:20Z | java/org/apache/catalina/servlets/CGIServlet.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 ... |
53,867 | Bug 53867 Performance tuning solution for PageContextImpl.XmlEscape | null | resolved fixed | c40ca99 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-28T21:51:02Z | 2012-09-13T18:13:20Z | java/org/apache/jasper/runtime/PageContextImpl.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
53,867 | Bug 53867 Performance tuning solution for PageContextImpl.XmlEscape | null | resolved fixed | c40ca99 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-28T21:51:02Z | 2012-09-13T18:13:20Z | test/org/apache/jasper/runtime/TesterPageContextImpl.java | |
54,067 | Bug 54067 Upgrade Response with Transfer-Encoding: chunked invalid | null | resolved fixed | 9308b3f | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-29T19:47:26Z | 2012-10-29T22:33:20Z | java/org/apache/coyote/http11/AbstractHttp11Processor.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... |
54,068 | Bug 54068 Web fragment sorting incorrectly detects circular reference | null | resolved fixed | 07d343a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-31T21:57:26Z | 2012-10-30T09:40:00Z | 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 ... |
54,068 | Bug 54068 Web fragment sorting incorrectly detects circular reference | null | resolved fixed | 07d343a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-10-31T21:57:26Z | 2012-10-30T09:40:00Z | test/org/apache/catalina/deploy/TestWebXmlOrdering.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... |
54,076 | Bug 54076 SPNEGO authenticator's stateless-ness incompatible with stateful clients | null | resolved fixed | 9f65875 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-03T22:32:33Z | 2012-10-30T18:00:00Z | java/org/apache/catalina/authenticator/SpnegoAuthenticator.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 ... |
54,096 | Bug 54096 env-entry rejects legal types | In servlet 3.0 the type in an env-entry can be any type which has a public constructor taking a single String (or character) as an argument. Tomcat only accepts a fixed list of types (see NamingContextListener from line 813). This is legal in web.xml but not accepted by tomcat: <env-entry> <env-entry-name>location</env... | resolved fixed | 48314f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-09T19:31:07Z | 2012-11-04T23:00:00Z | java/org/apache/catalina/core/NamingContextListener.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 ... |
54,096 | Bug 54096 env-entry rejects legal types | In servlet 3.0 the type in an env-entry can be any type which has a public constructor taking a single String (or character) as an argument. Tomcat only accepts a fixed list of types (see NamingContextListener from line 813). This is legal in web.xml but not accepted by tomcat: <env-entry> <env-entry-name>location</env... | resolved fixed | 48314f9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-09T19:31:07Z | 2012-11-04T23:00:00Z | test/org/apache/catalina/core/TestNamingContextListener.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... |
54,127 | Bug 54127 WsOutbound is missing a ping method | null | resolved fixed | 8fea85c | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-09T20:32:01Z | 2012-11-10T01:13:20Z | java/org/apache/catalina/websocket/WsOutbound.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 ... |
54,123 | Bug 54123 servlet 3.0 spec violation in async timeout processing | null | resolved fixed | 14637ef | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:26:55Z | 2012-11-09T16:53:20Z | java/org/apache/catalina/core/AsyncContextImpl.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 ... |
54,123 | Bug 54123 servlet 3.0 spec violation in async timeout processing | null | resolved fixed | 14637ef | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:26:55Z | 2012-11-09T16:53:20Z | 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 ... |
54,123 | Bug 54123 servlet 3.0 spec violation in async timeout processing | null | resolved fixed | 14637ef | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:26:55Z | 2012-11-09T16:53:20Z | java/org/apache/coyote/AsyncStateMachine.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... |
54,123 | Bug 54123 servlet 3.0 spec violation in async timeout processing | null | resolved fixed | 14637ef | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:26:55Z | 2012-11-09T16:53:20Z | test/org/apache/catalina/core/TestAsyncContextImpl.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... |
54,124 | Bug 54124 wrong javax.servlet.async.request_uri information and javax.servlet.async.path_info is missing | As it is clearly shown that org.apache.catalina.core.AsyncContextImpl.dispatch(ServletContext, String) @Override public void dispatch(ServletContext context, String path) { if (log.isDebugEnabled()) { logDebug("dispatch "); } check(); if (request.getAttribute(ASYNC_REQUEST_URI)==null) { request.setAttribute(ASYNC_REQUE... | resolved fixed | 76f84eb | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:43:18Z | 2012-11-09T16:53:20Z | java/org/apache/catalina/core/AsyncContextImpl.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 ... |
54,115 | Bug 54115 Minor enhancements to HttpClient test helper class | null | resolved fixed | 8f53c89 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-11T23:47:34Z | 2012-11-07T23:13:20Z | test/org/apache/catalina/startup/SimpleHttpClient.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... |
54,087 | Bug 54087 HTTP Connector incorrectly throws Exception on Invalid If-Modified-Since Header | null | resolved fixed | 810732d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-12T11:32:26Z | 2012-11-01T20:00:00Z | 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 ... |
54,141 | Bug 54141 Configuration does not allow Realms to be nested more than 2 levels deep | null | resolved fixed | 2ed3d7d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-13T14:17:42Z | 2012-11-13T07:00:00Z | java/org/apache/catalina/startup/RealmRuleSet.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 ... |
54,143 | Bug 54143 Add display of PermGen memory pool usage to the Status page of the Manager webapp | null | resolved fixed | 9998c80 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-13T22:49:52Z | 2012-11-14T02:26:40Z | java/org/apache/catalina/manager/StatusTransformer.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 ... |
54,144 | Bug 54144 Processing of java.io.Reader in "Out" tagplugin | null | resolved fixed | 7c4a841 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-16T23:56:12Z | 2012-11-14T13:33:20Z | 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 ... |
54,144 | Bug 54144 Processing of java.io.Reader in "Out" tagplugin | null | resolved fixed | 7c4a841 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-16T23:56:12Z | 2012-11-14T13:33:20Z | java/org/apache/jasper/tagplugins/jstl/core/Out.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 ... |
54,144 | Bug 54144 Processing of java.io.Reader in "Out" tagplugin | null | resolved fixed | 7c4a841 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-16T23:56:12Z | 2012-11-14T13:33:20Z | test/org/apache/jasper/tagplugins/jstl/core/TestOut.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 ... |
54,198 | Bug 54198 Improve HttpServletResponse#sendError(int) JavaDoc description | This methods calls sendError(int, null) internally. Thus generating a HTML page without a message. This is not mentioned in the docs. One could assume that the response will be empty. One could duplicate the first paragraph of the sendError(int,String) method and alter it to "The server defaults to creating the respons... | resolved fixed | 3c13e90 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-26T11:08:02Z | 2012-11-24T04:06:40Z | java/javax/servlet/http/HttpServletResponse.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 ... |
54,207 | Bug 54207 javaURLContextFactory javadoc refers to defunct package names in initial context properties | Javadoc for org.apache.naming.java.javaURLContextFactory: /** * Context factory for the "java:" namespace. * <p> * <b>Important note</b> : This factory MUST be associated with the "java" URL * prefix, which can be done by either : * <ul> * <li>Adding a * java.naming.factory.url.pkgs=org.apache.catalina.util.naming prop... | resolved fixed | d6b4740 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-11-26T11:29:15Z | 2012-11-26T06:06:40Z | java/org/apache/naming/java/javaURLContextFactory.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 ... |
54,217 | Bug 54217 JDBC connection pool runs out of connections when Context reload=true is enabled in Tomcat | null | resolved fixed | a81538d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-12-03T11:45:47Z | 2012-11-28T16:26:40Z | modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.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 ... |
54,220 | Bug 54220 ErrorReportValve invoked on non-error responses too | null | resolved fixed | a2d1441 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-12-03T14:19:39Z | 2012-11-29T00:46:40Z | java/org/apache/catalina/valves/ErrorReportValve.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 ... |
54,220 | Bug 54220 ErrorReportValve invoked on non-error responses too | null | resolved fixed | a2d1441 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-12-03T14:19:39Z | 2012-11-29T00:46:40Z | test/org/apache/catalina/valves/TestErrorReportValve.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 ... |
54,150 | Bug 54150 SlowQueryReportJmx mbean deregistration failure due to NPE - properties not set during pool close callback | Found while debugging version 7.0.29 I found that our SlowQueryReportJmx mbean was not being deregistered during webapp shutdown. I tracked this down to a NPE. The interceptor properties are not being set (as is done in setupConnection) prior to the pool close callback. ConnectionPool.close(boolean) poolClosed callback... | resolved fixed | b021a22 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-12-04T06:03:27Z | 2012-11-15T22:53:20Z | modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.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 ... |
54,194 | Bug 54194 NPE in DataSource.registerJmx() although DataSource is created with setJmxEnabled(false) | null | resolved fixed | 1c61fb1 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2012-12-04T06:31:27Z | 2012-11-23T19:46:40Z | modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/DataSource.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 ... |
54,241 | Bug 54241 NPE in BodyContentImpl | null | resolved fixed | ffc4525 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-02T14:47:01Z | 2012-12-04T14: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 ... |
54,241 | Bug 54241 NPE in BodyContentImpl | null | resolved fixed | ffc4525 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-02T14:47:01Z | 2012-12-04T14:06:40Z | test/org/apache/jasper/runtime/TestJspWriterImpl.java | |
54,247 | Bug 54247 Exception in JmxRemoteLifecycleListener.destroyServer | null | resolved fixed | 29c4a0e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-02T20:37:16Z | 2012-12-05T15:06:40Z | java/org/apache/catalina/startup/Bootstrap.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,256 | Bug 54256 Enhance Exception reporting on JAR file error | (I posted this to the mailing list on Oct 28, 2011, but didn't end up creating a report on it until now. I have the same error with Tomcat 7.) PROBLEM DESCRIPTION: I have an exception (appended below), and I think it would be nice to have more information about what is going on. If I had more context, it would help me ... | resolved fixed | 0ae2f34 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-02T21:48:09Z | 2012-12-07T00:26:40Z | java/org/apache/catalina/util/ExtensionValidator.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 ... |
54,260 | Bug 54260 JSP unloading - NullPointerException when using ".tag" files | null | resolved fixed | 94da507 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-03T14:18:01Z | 2012-12-07T22:40:00Z | java/org/apache/jasper/util/FastRemovalDequeue.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 ... |
54,370 | Bug 54370 NPE mapping method in EL | null | resolved fixed | 5361e86 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-03T15:38:00Z | 2013-01-03T19:06:40Z | java/org/apache/el/util/ReflectionUtil.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 ... |
54,370 | Bug 54370 NPE mapping method in EL | null | resolved fixed | 5361e86 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-03T15:38:00Z | 2013-01-03T19:06:40Z | test/org/apache/el/util/TestReflectionUtil.java | |
54,370 | Bug 54370 NPE mapping method in EL | null | resolved fixed | 5361e86 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-03T15:38:00Z | 2013-01-03T19:06:40Z | test/org/apache/el/util/Tester.java | |
54,262 | Bug 54262 An empty <absolute-ordering /> should turn off all web-fragments | The use of an <absolute-ordering> element does disable ServletContainerInitializer classpath scanning as discussed also in issue 53619. However, it does seem to require having at least one web-fragment name to be listed. In other words I would this: <absolute-ordering /> To turn off all web-fragments since none are nam... | resolved fixed | 5418e2b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T18:44:22Z | 2012-12-08T04:13:20Z | 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 ... |
54,262 | Bug 54262 An empty <absolute-ordering /> should turn off all web-fragments | The use of an <absolute-ordering> element does disable ServletContainerInitializer classpath scanning as discussed also in issue 53619. However, it does seem to require having at least one web-fragment name to be listed. In other words I would this: <absolute-ordering /> To turn off all web-fragments since none are nam... | resolved fixed | 5418e2b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T18:44:22Z | 2012-12-08T04:13:20Z | java/org/apache/catalina/startup/WebRuleSet.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 ... |
54,262 | Bug 54262 An empty <absolute-ordering /> should turn off all web-fragments | The use of an <absolute-ordering> element does disable ServletContainerInitializer classpath scanning as discussed also in issue 53619. However, it does seem to require having at least one web-fragment name to be listed. In other words I would this: <absolute-ordering /> To turn off all web-fragments since none are nam... | resolved fixed | 5418e2b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T18:44:22Z | 2012-12-08T04:13:20Z | test/org/apache/catalina/startup/TestContextConfig.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 ... |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | java/org/apache/catalina/core/ApplicationContext.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 ... |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | java/org/apache/catalina/deploy/FilterDef.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 ... |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | java/org/apache/catalina/deploy/ServletDef.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 ... |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | test/org/apache/catalina/core/TestApplicationContext.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 ... |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | test/org/apache/catalina/deploy/TestFilterDef.java | |
54,284 | Bug 54284 Util.objectNameValueNeedsQuote throws NPE for anonymous Filters | How to reproduce? From inside the contextInitialized-Method of an ServletContextListener instance, call context.addFilter(null, new ArbitraryFilter(pathPrefix)).addMappingForUrlPatterns(null, false, pathPrefix); What happens? Dec 12, 2012 3:59:03 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception... | resolved fixed | 113c0bd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T19:08:58Z | 2012-12-12T22:06:40Z | test/org/apache/catalina/deploy/TestServletDef.java | |
54,248 | Bug 54248 Retrieving content that contains a BOM via request.getReader() issue | If a request contains Content that includes the BOM - in my case Content-Type: application/xml; charset-utf-16 - and the content has a BOM (FF FE), when fetched utilizing the BufferedReader from getReader() - the first request serviced on the AJP thread works correctly (encoded correctly, only characters fetched), howe... | resolved fixed | f7fc27a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T23:00:47Z | 2012-12-05T17:53:20Z | java/org/apache/tomcat/util/buf/B2CConverter.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... |
54,248 | Bug 54248 Retrieving content that contains a BOM via request.getReader() issue | If a request contains Content that includes the BOM - in my case Content-Type: application/xml; charset-utf-16 - and the content has a BOM (FF FE), when fetched utilizing the BufferedReader from getReader() - the first request serviced on the AJP thread works correctly (encoded correctly, only characters fetched), howe... | resolved fixed | f7fc27a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-07T23:00:47Z | 2012-12-05T17:53:20Z | test/org/apache/tomcat/util/buf/TestB2CConverter.java | |
54,380 | Bug 54380 In MapperListener.lifecycleEvent(..): check state of parent before calling registerWrapper() | null | resolved fixed | 3a9990b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T06:52:50Z | 2013-01-07T17:33:20Z | java/org/apache/catalina/mapper/MapperListener.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
54,377 | Bug 54377 RemoteIpFilter does not correctly set request attributes for AccessLog | In RemoteIpFilter class, there is code that publishes the new request attributes to AccessLog (see below). 821 if (requestAttributesEnabled) { 822 request.setAttribute(AccessLog.REMOTE_ADDR_ATTRIBUTE, 823 request.getRemoteAddr()); 824 request.setAttribute(AccessLog.REMOTE_HOST_ATTRIBUTE, 825 request.getRemoteHost()); 8... | resolved fixed | 95e6056 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T20:24:10Z | 2013-01-06T05:26:40Z | java/org/apache/catalina/filters/RemoteIpFilter.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... |
54,377 | Bug 54377 RemoteIpFilter does not correctly set request attributes for AccessLog | In RemoteIpFilter class, there is code that publishes the new request attributes to AccessLog (see below). 821 if (requestAttributesEnabled) { 822 request.setAttribute(AccessLog.REMOTE_ADDR_ATTRIBUTE, 823 request.getRemoteAddr()); 824 request.setAttribute(AccessLog.REMOTE_HOST_ATTRIBUTE, 825 request.getRemoteHost()); 8... | resolved fixed | 95e6056 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T20:24:10Z | 2013-01-06T05:26:40Z | test/org/apache/catalina/filters/TestRemoteIpFilter.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... |
54,377 | Bug 54377 RemoteIpFilter does not correctly set request attributes for AccessLog | In RemoteIpFilter class, there is code that publishes the new request attributes to AccessLog (see below). 821 if (requestAttributesEnabled) { 822 request.setAttribute(AccessLog.REMOTE_ADDR_ATTRIBUTE, 823 request.getRemoteAddr()); 824 request.setAttribute(AccessLog.REMOTE_HOST_ATTRIBUTE, 825 request.getRemoteHost()); 8... | resolved fixed | 95e6056 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T20:24:10Z | 2013-01-06T05:26:40Z | 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 ... |
54,381 | Bug 54381 Websocket StreamInbound never reports receipt of a Pong | The tomcat websocket api now allows the send of a Ping frame by the server (as of 7.0.33), via WsOutbound, but never reports the receipt of a Pong. See StreamInbound in the onData() method... } else if (opCode == Constants.OPCODE_PONG) { // NO-OP } As the intended use of Pings is for heartbeat messages, allowing a Ping... | resolved fixed | 5f7af1b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T20:44:30Z | 2013-01-08T01:53:20Z | java/org/apache/catalina/websocket/StreamHandler.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 ... |
54,382 | Bug 54382 Nullpointer Exception after activating SSI and loading of any html-file with a specific comment | 1. Activate SSI on Tomcat and restart Tomcat 2. create an any html-file with a comment like this "<!--#-->" 3. put this html-file to the webapp folder of tomcat 4. when you now go to the html file via tomcat, you will get an Nullpointer Exception. The SSIServlet.class and other necessary SSI-classes cannot be found | resolved fixed | d83a5e5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-08T21:41:44Z | 2013-01-08T04:40:00Z | java/org/apache/catalina/ssi/SSIProcessor.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | 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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | java/org/apache/catalina/core/DefaultInstanceManager.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09: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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | 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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | java/org/apache/catalina/startup/FailedContext.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | java/org/apache/catalina/startup/WebRuleSet.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | java/org/apache/catalina/util/Introspection.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... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/core/TestStandardContext.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... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/core/TesterContext.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/deploy/TestWebXml.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... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/startup/TestContextConfig.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/startup/TestWebRuleSet.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 ... |
54,379 | Bug 54379 Implement support for post-construct and pre-destroy elements in web.xml | null | resolved fixed | 71d075e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T11:39:46Z | 2013-01-07T09:13:20Z | test/org/apache/catalina/startup/TesterServletWithLifeCycleMethods.java | |
54,387 | Bug 54387 Having servlets with same url should at least cause warning | I've found this interesting "mal functioning" in a application where I just copied the mapping portion of web.xml for a new created servlet, but forgot to change de URI. Tomcat deployed the application without any warning, but when running the application only the last referenced servlet was working (like if the mappin... | resolved fixed | 334c466 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T12:06:50Z | 2013-01-08T18:33:20Z | 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 ... |
54,387 | Bug 54387 Having servlets with same url should at least cause warning | I've found this interesting "mal functioning" in a application where I just copied the mapping portion of web.xml for a new created servlet, but forgot to change de URI. Tomcat deployed the application without any warning, but when running the application only the last referenced servlet was working (like if the mappin... | resolved fixed | 334c466 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-10T12:06:50Z | 2013-01-08T18:33:20Z | test/org/apache/catalina/deploy/TestWebXml.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... |
54,406 | Bug 54406 NIO and BIO connectors handle unsupported SSL ciphers and sslEnabledProtocols differently | The NIO and BIO connectors share (most of) a JSSE based SSLImplementation, but differ in their handling of the ciphers and sslEnabledProtocols attributes. The NIO connector sets the configured values for both attributes directly on the SSLEngine, which will fail immediately if any of them are unsupported. This makes cr... | resolved fixed | 9f657ac | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-13T22:04:31Z | 2013-01-11T02: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... |
54,406 | Bug 54406 NIO and BIO connectors handle unsupported SSL ciphers and sslEnabledProtocols differently | The NIO and BIO connectors share (most of) a JSSE based SSLImplementation, but differ in their handling of the ciphers and sslEnabledProtocols attributes. The NIO connector sets the configured values for both attributes directly on the SSLEngine, which will fail immediately if any of them are unsupported. This makes cr... | resolved fixed | 9f657ac | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-13T22:04:31Z | 2013-01-11T02:06:40Z | java/org/apache/tomcat/util/net/SSLUtil.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... |
54,406 | Bug 54406 NIO and BIO connectors handle unsupported SSL ciphers and sslEnabledProtocols differently | The NIO and BIO connectors share (most of) a JSSE based SSLImplementation, but differ in their handling of the ciphers and sslEnabledProtocols attributes. The NIO connector sets the configured values for both attributes directly on the SSLEngine, which will fail immediately if any of them are unsupported. This makes cr... | resolved fixed | 9f657ac | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-13T22:04:31Z | 2013-01-11T02:06:40Z | java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.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... |
54,440 | Bug 54440 TagPluginManager.init() throws NPE when used in Ant <jasper> task | null | resolved fixed | 297b26a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-17T13:17:42Z | 2013-01-17T08: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 ... |
54,440 | Bug 54440 TagPluginManager.init() throws NPE when used in Ant <jasper> task | null | resolved fixed | 297b26a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2013-01-17T13:17:42Z | 2013-01-17T08:06:40Z | java/org/apache/jasper/servlet/JspCServletContext.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 ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.