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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
43,356 | Bug 43356 keystoreFile parameter, when specified as relative, is not treated relative to $CATALINA_BASE or catalina.base property for NioEndPoint | null | resolved fixed | 28da141 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-09-14T21:30:29Z | 2007-09-11T17:00:00Z | java/org/apache/coyote/http11/Http11NioProtocol.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,356 | Bug 43356 keystoreFile parameter, when specified as relative, is not treated relative to $CATALINA_BASE or catalina.base property for NioEndPoint | null | resolved fixed | 28da141 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-09-14T21:30:29Z | 2007-09-11T17:00:00Z | 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... |
43,435 | Bug 43435 AbstractReplicatedMap.memberDisappeared is executed more than the necessity. | null | resolved fixed | 5aed2f5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-09-21T18:26:31Z | 2007-09-20T09:20:00Z | java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,453 | Bug 43453 ClassCastException at org.apache.catalina.core.StandardContext.findStatusPage(int) | StandardContext.java reads public String findStatusPage(int status) { return ((String) statusPages.get(new Integer(status))); } This is wrong and it should be public String findStatusPage(int status) { return ((ErrorPage) statusPages.get(new Integer(status))).getLocation(); } Regards, lg | resolved fixed | 73b5e41 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-09-23T23:53:05Z | 2007-09-23T17:53: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 ... |
43,479 | Bug 43479 APR sendfile thread leaks memory | The APR sendfile thread leaks memory by adding SendfileData objects to its HashMap and failing to remove them. | resolved fixed | 16464d6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-10-11T00:29:00Z | 2007-09-25T22:40:00Z | java/org/apache/tomcat/util/net/AprEndpoint.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,893 | Bug 43893 WebdavServlet returns incorrect values for the "href" property when it is mapped with / url prefix, instead of /* | null | resolved wontfix | 3c61f9b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-23T19:02:38Z | 2007-11-18T04:26:40Z | java/org/apache/catalina/servlets/WebdavServlet.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,887 | Bug 43887 StandardWrapper.registerJMX() doesn't log exceptions correctly | I was getting some rather unhelpful error messages when trying to deploy a web.xml that included illegal servlet names. I tracked them down to this part of /org/apache/catalina/core/StandardWrapper.java: } catch( Exception ex ) { log.info("Error registering servlet with jmx " + this); } This should probably be changed ... | resolved fixed | 9314e5b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-23T21:12:32Z | 2007-11-16T21:53:20Z | java/org/apache/catalina/core/StandardWrapper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,706 | Bug 43706 Fix a litmus warning for WebdavServlet | null | resolved fixed | 324387d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-27T22:05:57Z | 2007-10-26T12:00:00Z | java/org/apache/catalina/servlets/WebdavServlet.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,757 | Bug 43757 Improper parsing of response.sendRedirect() in JSP source | Tomcat is throwing a java.lang.illegalStateException due to an attempted response.sendRedirect() after the time for such matters has come and gone... But, this appears to be a symptom of bad .jsp parsing at runtime. ========================== org.apache.jasper.JasperException: Exception in JSP: /buslog.jsp:42 39: // if... | resolved fixed | eb87635 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-29T22:27:23Z | 2007-10-31T17:00:00Z | java/org/apache/jasper/compiler/ErrorDispatcher.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,622 | Bug 43622 compression / minCompressionSize attribute not properly implemented | 2 of the compression related attributes for the http connector are: compression = on | off | force | <integer val> The documentation states that integer val will be implemented as: compression="on" and minCompressionSize = <integer val> minCompressionSize = <integer val> (The documentation for 5.5.12 doesnt mention thi... | resolved fixed | d1d0619 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-30T19:13:33Z | 2007-10-15T06:33:20Z | java/org/apache/coyote/http11/Http11AprProtocol.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,622 | Bug 43622 compression / minCompressionSize attribute not properly implemented | 2 of the compression related attributes for the http connector are: compression = on | off | force | <integer val> The documentation states that integer val will be implemented as: compression="on" and minCompressionSize = <integer val> minCompressionSize = <integer val> (The documentation for 5.5.12 doesnt mention thi... | resolved fixed | d1d0619 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-30T19:13:33Z | 2007-10-15T06:33:20Z | java/org/apache/coyote/http11/Http11NioProtocol.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,622 | Bug 43622 compression / minCompressionSize attribute not properly implemented | 2 of the compression related attributes for the http connector are: compression = on | off | force | <integer val> The documentation states that integer val will be implemented as: compression="on" and minCompressionSize = <integer val> minCompressionSize = <integer val> (The documentation for 5.5.12 doesnt mention thi... | resolved fixed | d1d0619 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-11-30T19:13:33Z | 2007-10-15T06:33:20Z | java/org/apache/coyote/http11/Http11Protocol.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,611 | Bug 43611 autodeployment with unpackWARs="true" does not work, when a context for that war file exists in server.xml | if a context for the war file exists in server.xml, the manager uploads the new .war file, but does not expand it, if the necessary directory does not exist, and if the directory exists, it is not overwritten, so you see the old application. see server.xml <Host name="xxx" appBase="webapps" unpackWARs="true"> <Context ... | resolved fixed | ffbbe88 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-01T18:26:13Z | 2007-10-12T09:06:40Z | 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 ... |
43,241 | Bug 43241 ServletContext.getResourceAsStream() does not follow API specs for Path | null | resolved fixed | 8f91433 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-18T23:08:51Z | 2007-08-29T17:53:20Z | 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 ... |
43,236 | Bug 43236 Response.setCharacterEncoding() fails after Response.getWriter() and Response.reset() | The class org.apache.catalina.connector.Response resets the internal hold coyoteResponse and outputBuffer during reset(): public void reset() { if (included) return; // Ignore any call from an included servlet coyoteResponse.reset(); outputBuffer.reset(); } but if anyone has already set the characterEncoding (e.g. to U... | resolved fixed | 71bd193 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-18T23:46:19Z | 2007-08-29T06:46:40Z | java/org/apache/catalina/connector/Response.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,084 | Bug 44084 JAASRealm useContextClassLoader has problems | The useContextClassLoader config option doesn't work right. - it is ignored when setting userClassNames and roleClassNames - it's respected when the LoginContext is created, but that is insufficient, because all the needed classes are not necessarily loaded until loginContext.login() is called Patch to follow. With it ... | resolved fixed | 46721e4 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-23T21:55:38Z | 2007-12-15T20:20:00Z | java/org/apache/catalina/realm/JAASRealm.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,088 | Bug 44088 Cannot expire session via html manager webapp | The html manager webapp done not work correctly when clicking the expire sessions button. The idle param is missing from the form. The following html shows this bug... <form method="POST" action="/manager/html/expire?path=/"> <small> <input type="submit" value="Expire sessions"> with idle ≥ <input ty... | resolved fixed | df2b1e6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-23T23:07:48Z | 2007-12-17T19:33: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 ... |
43,944 | Bug 43944 org.apache.el.lang.ELArithmetic.coerce throws MissingResourceException for key el.convert | The class org.apache.el.lang.ELArithmetic has the following code snippet: throw new IllegalArgumentException(MessageFactory.get("el.convert", obj, objType)); But the key "el.convert" doesn't exist in "org.apache.el.Messages". As a result, I'm receiving the exception: java.util.MissingResourceException: Can't find resou... | resolved fixed | c228054 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-24T15:51:53Z | 2007-11-23T01:06:40Z | java/org/apache/el/lang/ELArithmetic.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,909 | Bug 43909 EL EvaluationContext wrapper hides locale | org.apache.el.lang.EvaluationContext doesn't pass locale to the wrapped ELContext as does org.apache.jasper.el.ELContextWrapper. This prohibits using of the locale for it's original purpose. | resolved fixed | fdb170e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-24T19:24:59Z | 2007-11-20T03:40:00Z | java/org/apache/el/lang/EvaluationContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,914 | Bug 43914 HTTP spec violation when generating HTTP redirects for folders without trailing slash | null | resolved fixed | e452200 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-26T21:23:17Z | 2007-11-20T12:00:00Z | java/org/apache/catalina/connector/CoyoteAdapter.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
42,503 | Bug 42503 ServletContext.getResourceAsStream returns stale data | Under certain conditions, the resource cache implementation used by the servlet/JSP engine (in org.apache.naming.resource) does not detect that a file in its cache has been modified and therefore returns the previous contents of the file. This happens only * when the file contents are modified but the file length doesn... | resolved fixed | 2441155 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-27T01:57:02Z | 2007-05-23T19:53: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 ... |
43,285 | Bug 43285 Missing EL Coercion causes argument type mismatch | I'll attach a sample web application reproducing the error. Note that this error only occurs when using Tomcat 6.0.x (i.e. it works with Jetty as it uses Sun's EL RI). Moreover it doesn't matter which JSF implementation you're using to reproduce the error (I just wanted to mention that as it's definitely no bug in MyFa... | resolved fixed | c5bcc98 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-27T02:10:38Z | 2007-09-02T16:20:00Z | java/org/apache/el/parser/AstValue.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,868 | Bug 43868 MBeanServer invoke issue | Impossible to invoke "removeRole" or other MBean methods and "setAttribute" by MBeanServer cause of the same bug in ManagedBean.java at both lines 545 (getSetter method) and 604 (getInvoke method): object = this; Must be replace by: object = bean; Fortunately getGetter method is correct. | resolved fixed | ccadbbc | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2007-12-29T22:45:21Z | 2007-11-15T07:00:00Z | java/org/apache/tomcat/util/modeler/ManagedBean.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,758 | Bug 43758 java.lang.NullPointerException from org.apache.jasper.compiler.ServletWriter.printMultiLn() on validation of JSPX with empty <jsp:scriptlet> element | null | resolved fixed | 61ce1a3 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-01T20:04:45Z | 2007-10-31T17:00:00Z | java/org/apache/jasper/compiler/Node.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,743 | Bug 43743 Cannot jspc precompile jsps with nested .tag files | myjsp.jsp: HELLO <tag1/> tag1.tag: <tag2> tag2.tag: WORLD Crashes (null pointer) while trying to load tag2.class, called by TagFileProcessor.loadTagFile. Very Initial analysis:- TagFileProcessor.loadTagFile creates wrapper, but ctxt.getTagFileJarUrl (tagFilePath) returns null for nested .tag. Thus in JspCompilationCont... | resolved fixed | 98b8ba2 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-07T23:15:59Z | 2007-10-31T00:20:00Z | java/org/apache/jasper/compiler/Parser.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
11,117 | Bug 11117 Coyote connector does not correctly deal with large PUT when using chunked transfer encoding | I've built a small test servlet (included below) that shows this behaviour. If I upload data to tomcat (configured to use the HTTP/1.1 Coyote connector) using a chunked transfer-encoding on a PUT, then the result (i.e. what I read using the servlet's request.getInputStream() is corrupted. This _only_ happens on large P... | resolved fixed | 1cc6641 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-08T21:45:03Z | 2002-07-24T11:26:40Z | java/org/apache/coyote/http11/filters/ChunkedInputFilter.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,468 | Bug 43468 HTMLManagerServlet NullPointerException listing context | Obtained the following NullPointerException, stack trace below java.lang.NullPointerException org.apache.catalina.manager.HTMLManagerServlet.list(HTMLManagerServlet.java:437) org.apache.catalina.manager.HTMLManagerServlet.doGet(HTMLManagerServlet.java:136) Code is: args[11] = new Integer(context.getManager().getMaxInac... | resolved fixed | e14afee | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-16T23:40:53Z | 2007-09-24T21:40:00Z | 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 ... |
44,223 | Bug 44223 Tomcat ignores the "javax.net.ssl.trustStoreType" system property | Set up a SSL Connector with a keystore in JKS format: <Connector ... SSLEnabled="true" keystoreFile="tomcat.keystore" keystoreType="JKS"> Let's say you need a custom truststore (e.g. for authenticating self-signed client certificates), and that this truststore is also needed by some of your webapps, not only Tomcat. Th... | resolved fixed | f9e41b8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-18T20:57:51Z | 2008-01-14T08:40:00Z | 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... |
44,268 | Bug 44268 Multiple registrations of same ServletContextListener class not possible | When I register the same class implementing ServletContextListener twice or more its' contextInitialized methods only gets called once. The servlet specifications (2.4 and 2.5) say the conforming container has to call the listeners in the same order they are registered in the deployment descriptor. The case that one li... | resolved fixed | cdff09f | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-21T21:14:57Z | 2008-01-18T12:40:00Z | java/org/apache/catalina/core/StandardContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,282 | Bug 44282 WebappClassLoader.findClass calls getClassLoader without privileges | When logging is in TRACE mode or lower, org.apache.catalina.loader.WebappClassLoader.findClass(String) calls getClassLoader() without a privileged block. With security enabled, this will cause a SecurityException if the RuntimePermission to getClassLoader is not granted. | resolved fixed | 948598d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-01-30T23:24:48Z | 2008-01-23T03:46:40Z | java/org/apache/catalina/loader/WebappClassLoader.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,701 | Bug 43701 Error while starting tomcat | this is my NIO Connector configuration in server.xml <Connector acceptCount="100" enableLookups="false" port="80" protocol="org.apache.coyote.http11.Http11NioProtocol" acceptorThreadCount="2" socket.bufferPool="-1" connectionTimeout="60000" maxKeepAliveRequests="-1" maxThreads="200" minSpareThreads="25" redirectPort="8... | resolved fixed | bf6ce6f | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-02-03T19:06:00Z | 2007-10-26T06:26: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... |
44,337 | Bug 44337 Dir listing crashes if no readme-file present | DefaultServlet docu 6.0 says about attibute readmeFile: If a directory listing is presented, a readme file *may* also be presented with the listing. This file is inserted ..... This was true for 5.5.x. 6.0.14 crashes if the file is absent in the listed directory. javax.servlet.ServletException: Error opening readme res... | resolved fixed | 8a3b14b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-02-04T02:10:39Z | 2008-02-01T07:13:20Z | java/org/apache/catalina/servlets/DefaultServlet.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,562 | Bug 44562 HEAD requests cannot go through request dispatch include. | null | resolved fixed | 288b2ae | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-03-09T17:19:00Z | 2008-03-07T17:13:20Z | java/javax/servlet/http/HttpServlet.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,558 | Bug 44558 cite attempted address when throwing "Cannot assign requested address" | SEVERE: Error starting endpoint java.net.BindException: Cannot assign requested address:2217 at org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:501) at org.apache.tomcat.util.net.JIoEndpoint.start(JIoEndpoint.java:515) at org.apache.coyote.http11.Http11Protocol.start(Http11Protocol.java:203) at org.apache.... | resolved fixed | 7bd915c | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-03-09T17:31:48Z | 2008-03-07T11:40:00Z | java/org/apache/tomcat/util/net/JIoEndpoint.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
44,646 | Bug 44646 IllegalStateException when using CometConnectionManagerValve | We're writing an application that processes requests using both a normal servlet and a CometProcessor. The normal servlet handles user authentication and logout (among other things). Once the user has been authenticated, the client makes a Comet request, which is open until the server has something to push to the clien... | resolved fixed | fdac1d6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-03-23T23:22:07Z | 2008-03-20T13:33:20Z | java/org/apache/catalina/valves/CometConnectionManagerValve.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,673 | Bug 44673 ServletInputStream still readable even when closed | null | resolved fixed | ca41a27 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-03-25T23:36:56Z | 2008-03-25T18:33:20Z | java/org/apache/catalina/connector/InputBuffer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,529 | Bug 44529 RealmBase authorization via hasResourcePermission not fully servlet spec compliant | The authorization implementation in RealmBase, in the hasResourcePermission method is not fully servlet specification compliant. The spec (both 2.4 and 2.5) states: "... A security constraint that does not contain an authorization constraint shall combine with authorization constraints that name or imply roles to allow... | resolved fixed | 7be2374 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-03-29T14:48:24Z | 2008-03-04T14:13: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 ... |
44,595 | Bug 44595 Add possibility to request the QueueSize of an executor via JMX | null | resolved fixed | c3c525b | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-07T09:29:41Z | 2008-03-13T06:33:20Z | java/org/apache/catalina/core/StandardThreadExecutor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,428 | Bug 44428 FunctionMapperImpl.Function throws a NPE in certain circumstances | In FunctionMapperImpl.Function it is possible for writeExternal to fail if the class has just been de-serialised and is then serialised again. If you look at writeExternal: public void writeExternal(ObjectOutput out) throws IOException { out.writeUTF((this.prefix != null) ? this.prefix : ""); out.writeUTF(this.localNam... | resolved fixed | 0035fd4 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-09T22:33:01Z | 2008-02-15T07:20:00Z | java/org/apache/el/lang/FunctionMapperImpl.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,408 | Bug 44408 EL-expression evaluation slow due to synchronization caused by JspFactory.getDefaultFactory | null | resolved fixed | 1f41c3d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-10T17:29:23Z | 2008-02-13T08:06:40Z | 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 ... |
44,392 | Bug 44392 HTML entities not resolved in SSI filter | HTML entities which are contained in an SSI set directive aren't resolved by the SSI filter (in contrary to what is done by mod_include of Apaches HTTP). mod_include resolves all HTML entities in most of the attribute values of ssi directives. It also resolves \" to " and \$ to $. The ssi filter of tomcat resolves all ... | resolved fixed | 75fbd91 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-11T20:07:26Z | 2008-02-11T11:40:00Z | java/org/apache/catalina/ssi/SSIEcho.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,392 | Bug 44392 HTML entities not resolved in SSI filter | HTML entities which are contained in an SSI set directive aren't resolved by the SSI filter (in contrary to what is done by mod_include of Apaches HTTP). mod_include resolves all HTML entities in most of the attribute values of ssi directives. It also resolves \" to " and \$ to $. The ssi filter of tomcat resolves all ... | resolved fixed | 75fbd91 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-11T20:07:26Z | 2008-02-11T11:40:00Z | java/org/apache/catalina/ssi/SSIMediator.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,391 | Bug 44391 SSI handling of escaped characters broken | In org.apache.catalina.ssi.SSIProcessor the method parseParamNames is broken. If I have a SSI directive like <!--#set var="test" value="blubb\"\"" --> the method detects three parameters instead of two. This is because there are two consecutive escaped characters. Although the first one \" is detected correctly the nex... | resolved fixed | df75937 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-11T21:25:59Z | 2008-02-11T08:53:20Z | 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 ... |
44,389 | Bug 44389 Cleanup of org.apache.naming.resources.CacheEntry resources (memory leak) | Hi, I am memory profiling a webapp for my company because we suspect it has memory leaks when redeploying. This webapp has to be redeployed several times a week for security reasons (most of the time it is undeployed) and the memory leaks forced us to shutdown tomcat once a week to avoid OOM exception. I'm using jvm1.5... | resolved fixed | 6723b35 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-11T22:34:45Z | 2008-02-11T06: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 ... |
44,380 | Bug 44380 TldConfig / Scan of URL that are not files | The TldConfig class (org.apache.catalina.startup) is asking ClassLoader and all parent ClassLoader in order to get the URLs and then assume that the URLs are using "file" protocol. But when Tomcat is embedded, sometimes the URL are not always using "file" protocol and then new File() will fail. The given patch is to sk... | resolved fixed | 2edf51e | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-11T23:07:10Z | 2008-02-08T11:26:40Z | java/org/apache/catalina/startup/TldConfig.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
29,936 | Bug 29936 XML parser loading problems by container | I'm trying to use JSTL 1.1 with this version of tomcat and have both saxon and crimson in my web-app. If we have crimson and saxon in our webapp lib then tomcat tries to use crimson as the xml parser when reading the web.xml and compiling the jsp and we get the prefix error: org.apache.jasper.JasperException: <h3>Valid... | resolved fixed | 06c23d8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-20T20:47:57Z | 2004-07-06T18:53:20Z | java/org/apache/catalina/startup/ContextConfig.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
31,257 | Bug 31257 java.endorsed.dirs is not used when JSP compilation is forked | When the JSP compiler forks a javac process, it should check to see what the currently endorsed directories are (check the system property "java.endorsed.dirs" - otherwise, classes end up missing and JSP pages do not properly compile. We experienced a problem when we explicitly set the java.endorsed.dirs property on th... | resolved fixed | 0ea3e15 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-20T22:39:35Z | 2004-09-16T10:20:00Z | java/org/apache/jasper/compiler/AntCompiler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,425 | Bug 43425 Non-compliant annotations | null | resolved fixed | 48131cd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-25T22:55:38Z | 2007-09-19T02:46:40Z | java/javax/annotation/security/DenyAll.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,425 | Bug 43425 Non-compliant annotations | null | resolved fixed | 48131cd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-25T22:55:38Z | 2007-09-19T02:46:40Z | java/javax/ejb/EJB.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,425 | Bug 43425 Non-compliant annotations | null | resolved fixed | 48131cd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-25T22:55:38Z | 2007-09-19T02:46:40Z | java/javax/persistence/PersistenceContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,425 | Bug 43425 Non-compliant annotations | null | resolved fixed | 48131cd | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-25T22:55:38Z | 2007-09-19T02:46:40Z | java/javax/persistence/PersistenceProperty.java | |
44,877 | Bug 44877 ClassCastException due to bad TagHandlerPool name generation of two different tags | null | resolved fixed | dfa25f4 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-27T17:19:48Z | 2008-04-25T19:00: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 ... |
43,366 | Bug 43366 Session Statistics command in manager fails with "Unknown command /sessions" | null | resolved fixed | f4a7632 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-04-27T17:59:02Z | 2007-09-12T12:26:40Z | java/org/apache/catalina/manager/ManagerServlet.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,142 | Bug 43142 webapp expanded in a FOLDER named webapps/xxx.war is loaded TWICE | reproduce: copy the expanded of file xxx.war file in a FOLDER tomcat/webapps/xxx.war bug: tomcat will load the app TWICE | resolved fixed | 6a8b1bb | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-01T07:00:14Z | 2007-08-16T10:26: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 ... |
43,150 | Bug 43150 Tomcat and path with pound sign (#) -> ClassNotFoundException | Tomcat will not start if it's located and launched from a path with a # (pound) character somewhere. You'll find all informations in the given mail-thread on tomcat-user, including some developer specific informations. One part of the problem is the usage of File.toURL in URLClassloader... I'd really appreciate it if t... | resolved fixed | fa91954 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-01T21:25:01Z | 2007-08-16T18:46:40Z | java/org/apache/catalina/startup/ClassLoaderFactory.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,150 | Bug 43150 Tomcat and path with pound sign (#) -> ClassNotFoundException | Tomcat will not start if it's located and launched from a path with a # (pound) character somewhere. You'll find all informations in the given mail-thread on tomcat-user, including some developer specific informations. One part of the problem is the usage of File.toURL in URLClassloader... I'd really appreciate it if t... | resolved fixed | fa91954 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-01T21:25:01Z | 2007-08-16T18:46:40Z | java/org/apache/jasper/JspCompilationContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,191 | Bug 43191 compressableMimeType attribute ignored | I have set compression="on" and compressableMimeType="text/html" in server.xml. It appears that the value of compressableMimeType is being ignored. My XML responses are all coming back gzipped. If I switch to compression="off" the responses are not gzipped, but as soon as I turn it on, regardless of the value of compre... | resolved fixed | e2524a8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-03T10:14:00Z | 2007-08-22T19:13:20Z | java/org/apache/coyote/http11/Http11AprProcessor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,191 | Bug 43191 compressableMimeType attribute ignored | I have set compression="on" and compressableMimeType="text/html" in server.xml. It appears that the value of compressableMimeType is being ignored. My XML responses are all coming back gzipped. If I switch to compression="off" the responses are not gzipped, but as soon as I turn it on, regardless of the value of compre... | resolved fixed | e2524a8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-03T10:14:00Z | 2007-08-22T19:13:20Z | java/org/apache/coyote/http11/Http11NioProcessor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,191 | Bug 43191 compressableMimeType attribute ignored | I have set compression="on" and compressableMimeType="text/html" in server.xml. It appears that the value of compressableMimeType is being ignored. My XML responses are all coming back gzipped. If I switch to compression="off" the responses are not gzipped, but as soon as I turn it on, regardless of the value of compre... | resolved fixed | e2524a8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-03T10:14:00Z | 2007-08-22T19:13:20Z | java/org/apache/coyote/http11/Http11Processor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
43,080 | Bug 43080 Suspicious url pattern warning logged to wrong webapp | "Suspicious url pattern" warnings are logged to the wrong webapp, not the one actually using them. These log events are coming from SecurityCollection.java. | resolved fixed | 332d0f0 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-04T10:41:48Z | 2007-08-09T20:06:40Z | java/org/apache/catalina/core/StandardContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,080 | Bug 43080 Suspicious url pattern warning logged to wrong webapp | "Suspicious url pattern" warnings are logged to the wrong webapp, not the one actually using them. These log events are coming from SecurityCollection.java. | resolved fixed | 332d0f0 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-04T10:41:48Z | 2007-08-09T20:06:40Z | java/org/apache/catalina/deploy/SecurityCollection.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
42,943 | Bug 42943 jsp:text gets confused with other *:text elements in a JSP tag file | null | resolved fixed | 17b4436 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-08T21:53:35Z | 2007-07-20T08:26:40Z | java/org/apache/jasper/compiler/JspDocumentParser.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
42,934 | Bug 42934 sessionDidActivate() called before contextInitialized() | I'm using Seam and a Seam app depends upon the Seam application being initialized before you can do much of anything in Seam. That said Seam puts some hooks into the sessionDidActivate() and sessionDidPassivate() events. Because of that when I start up my app I'm getting a Seam IllegalStateException because the context... | resolved fixed | a9cb6a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-09T20:21:20Z | 2007-07-18T17:33:20Z | java/org/apache/catalina/core/StandardContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
44,986 | Bug 44986 JSP compilation exception with pageEncoding="utf-8" and file with byte order marks | JSP-File has byte order marks. If the attribute is set to "UTF-8" (upper case) or the file has no byte order marks, the compilation workes fine. {code} 12:32:16,946 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: /dialog.jsp(2,0) Page-encoding specified in XML prolog (... | resolved fixed | 3c84dcf | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-13T21:40:59Z | 2008-05-13T09:13:20Z | java/org/apache/jasper/compiler/Validator.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
42,750 | Bug 42750 Http Post requests not handled correctly if there is more than one space between the "POST" and the URL | null | resolved fixed | f93376d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-19T20:07:20Z | 2007-06-26T20:33:20Z | java/org/apache/coyote/http11/InternalAprInputBuffer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
42,750 | Bug 42750 Http Post requests not handled correctly if there is more than one space between the "POST" and the URL | null | resolved fixed | f93376d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-19T20:07:20Z | 2007-06-26T20:33:20Z | java/org/apache/coyote/http11/InternalInputBuffer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
42,750 | Bug 42750 Http Post requests not handled correctly if there is more than one space between the "POST" and the URL | null | resolved fixed | f93376d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-19T20:07:20Z | 2007-06-26T20:33:20Z | java/org/apache/coyote/http11/InternalNioInputBuffer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
45,101 | Bug 45101 DirContextURLConnection - Format Date Header Values per HTTP spec | null | resolved fixed | e0200b0 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-05-29T21:32:02Z | 2008-05-29T16:53:20Z | java/org/apache/naming/resources/DirContextURLConnection.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,279 | Bug 45279 McastServiceImpl leaks sockets. | McastServiceImpl does not close its socket in stop() as it claims. It merely calls leaveGroup(), which is sufficient to stop receiving messages, but does not close the socket. This causes a file descriptor leak each time the service is stopped. add; socket.close(); after leaveGroup(); | resolved fixed | a2a7714 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-06-25T20:44:48Z | 2008-06-25T16:06:40Z | java/org/apache/catalina/tribes/membership/McastServiceImpl.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
36,155 | Bug 36155 tomcat chooses wrong host if using mod_jk | null | resolved fixed | f23907d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-06-28T02:11:48Z | 2005-08-12T09:46:40Z | java/org/apache/coyote/ajp/AjpMessage.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
45,317 | Bug 45317 DeltaManager always reports default timeout value for receiving session state on startup | Hi there, If I override the state transfer timeout: <Manager className="org.apache.catalina.ha.session.DeltaManager" stateTransferTimeout="10" expireSessionsOnShutdown="false" notifyListenersOnReplication="true"/> DeltaManager continues to log the default timeout value (ie: "This operation will timeout if no session st... | resolved fixed | 36bb5d9 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-02T20:41:10Z | 2008-07-01T11:00:00Z | java/org/apache/catalina/ha/session/DeltaManager.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
42,678 | Bug 42678 docBase ignored even if its not a subdir of appBase | I use latest 6.0 SVN snapshot. I store deployable WARs in "webapps-dist" (aside "webapps"). This is my setup: bash-3.2$ ls $CATALINA_BASE conf logs temp tomcat-dist webapps webapps-dist work bash-3.2$ ls webapps-dist sample.war bash-3.2$ cat conf/Catalina/localhost/sample.xml <Context docBase="${catalina.base}/webapps-... | resolved fixed | 252fca1 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-10T17:01:23Z | 2007-06-15T17:53:20Z | 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 ... |
42,722 | Bug 42722 Potential NullPointerException in org.apache.catalina.servlets.CGIServlet | null | resolved fixed | d41f610 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-10T21:11:16Z | 2007-06-22T08: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 ... |
42,727 | Bug 42727 CoyoteReader readLine returns null for some post request bodies that are a multiple of MAX_LINE_LENGTH in size | null | resolved fixed | 92f847d | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-17T22:09:18Z | 2007-06-23T09:13:20Z | java/org/apache/catalina/connector/CoyoteReader.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,459 | Bug 45459 Startup Listener error message unhelpful | null | resolved wontfix | 4cab5f3 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-29T14:29:27Z | 2008-07-22T12:33:20Z | java/org/apache/catalina/core/StandardContext.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
45,453 | Bug 45453 JDBCRealm.getRoles bad synchronization causes hangs w/ DIGEST authentication | JDBCRealm.getRoles bad synchronization causes hangs w/ DIGEST authentication JDBCRealm caches PreparedStatement preparedRoles. That, and missing synchronization in JDBCRealm and/or DigestAuthenticator allow two threads to call getRoles simultaneously so that T1 will do stmt.executeQuery() while T2 does stmt.setString(1... | resolved fixed | 9d3cad7 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-07-29T14:58:05Z | 2008-07-22T07:00:00Z | java/org/apache/catalina/realm/JDBCRealm.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,591 | Bug 45591 NullPointerException during shutdown in JKMain.pause() | On startup, if Tomcat discovers that the main port is already bound to another process, it fails and tries to execute the shutdown code. In some situations (I'm not sure which), the org.apache.jk.server.JKMain instance variable wEnv is null at this point, which causes a NullPointerException when JKMain.pause() is calle... | resolved fixed | 38a62a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-08T14:31:20Z | 2008-08-07T17:26:40Z | java/org/apache/jk/server/JkMain.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
45,576 | Bug 45576 JAASRealm not working with DigestAuthenticator | null | resolved fixed | c984c6a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T12:10:34Z | 2008-08-06T05:20:00Z | java/org/apache/catalina/realm/JAASCallbackHandler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,576 | Bug 45576 JAASRealm not working with DigestAuthenticator | null | resolved fixed | c984c6a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T12:10:34Z | 2008-08-06T05:20:00Z | java/org/apache/catalina/realm/JAASMemoryLoginModule.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,576 | Bug 45576 JAASRealm not working with DigestAuthenticator | null | resolved fixed | c984c6a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T12:10:34Z | 2008-08-06T05:20:00Z | java/org/apache/catalina/realm/JAASRealm.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
41,407 | Bug 41407 CLIENT-CERT Authentication with JAASRealm not working | I tried to config my webapp to authenticate user by CLIENT-CERT auth method. I verified my JAAS LoginModule by using "BASIC" to auth method and successfully authenticated user login. After studying Tomcat 5.5.20 source, I found that the problem is caused by the RealmBase.java and JAASRealm.java. if CLIENT-CERT auth met... | resolved fixed | 6d78232 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T14:32:47Z | 2007-01-18T22:40:00Z | java/org/apache/catalina/realm/JAASCallbackHandler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
41,407 | Bug 41407 CLIENT-CERT Authentication with JAASRealm not working | I tried to config my webapp to authenticate user by CLIENT-CERT auth method. I verified my JAAS LoginModule by using "BASIC" to auth method and successfully authenticated user login. After studying Tomcat 5.5.20 source, I found that the problem is caused by the RealmBase.java and JAASRealm.java. if CLIENT-CERT auth met... | resolved fixed | 6d78232 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T14:32:47Z | 2007-01-18T22:40:00Z | java/org/apache/catalina/realm/JAASMemoryLoginModule.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
41,407 | Bug 41407 CLIENT-CERT Authentication with JAASRealm not working | I tried to config my webapp to authenticate user by CLIENT-CERT auth method. I verified my JAAS LoginModule by using "BASIC" to auth method and successfully authenticated user login. After studying Tomcat 5.5.20 source, I found that the problem is caused by the RealmBase.java and JAASRealm.java. if CLIENT-CERT auth met... | resolved fixed | 6d78232 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-09T14:32:47Z | 2007-01-18T22:40:00Z | java/org/apache/catalina/realm/JAASRealm.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
45,608 | Bug 45608 Race conditions on field countAllocated of class org.apache.catalina.core.StandardWrapper | We found field countAllocated are accessed by allocate() and deallocate() without any protections by locks. Here is a trace log, Thread http-8081-1 id: 23 : READ [org.apache.catalina.core.StandardWrapper : allocate : 820] [org.apache.catalina.core.StandardWrapperValve : invoke : 129] [org.apache.catalina.core.StandardC... | resolved fixed | 816ecb8 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-12T15:10:23Z | 2008-08-11T02:00:00Z | java/org/apache/catalina/core/StandardWrapper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
45,655 | Bug 45655 check permisson | null | resolved fixed | b266836 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-20T23:36:36Z | 2008-08-19T18:20:00Z | java/org/apache/juli/ClassLoaderLogManager.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
43,327 | Bug 43327 Socket bind fails on tomcat startup when using apr | I'm running debian sid, kernel 2.6.22 and use tomcat 6.0.14 together with apr 1.2.11. no special tomcat configuration (out of the box). On start up of tomcat I get the following error log: Debugging apr revealed a problem with IPV6: apr_socket_create() assigns a AF_INET6 socket, apr_socket_bind tries to bind a AF_INET ... | resolved fixed | fea7658 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-21T13:34:40Z | 2007-09-07T10:13:20Z | java/org/apache/tomcat/util/net/AprEndpoint.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
44,809 | Bug 44809 Improve AprLifecycleListener Error Messages | null | resolved fixed | 46055c5 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-27T07:23:40Z | 2008-04-11T13:20:00Z | java/org/apache/catalina/core/AprLifecycleListener.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
45,074 | Bug 45074 Add configuration parameters for finer tuning of Http11AprProtocol thread usage | null | resolved fixed | 6a1f316 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-27T07:42:58Z | 2008-05-23T19:13:20Z | java/org/apache/coyote/http11/Http11AprProtocol.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... |
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... | resolved fixed | 337d6a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T13:47:57Z | 2008-08-26T11:26:40Z | java/org/apache/jasper/compiler/Compiler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
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... | resolved fixed | 337d6a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T13:47:57Z | 2008-08-26T11:26:40Z | java/org/apache/jasper/compiler/JspUtil.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
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... | resolved fixed | 337d6a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T13:47:57Z | 2008-08-26T11:26:40Z | java/org/apache/jasper/compiler/Node.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
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... | resolved fixed | 337d6a6 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T13:47:57Z | 2008-08-26T11:26:40Z | 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 ... |
45,648 | Bug 45648 Function 'f:length' not found | null | resolved fixed | 6d40691 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T19:35:05Z | 2008-08-18T22:53:20Z | java/org/apache/el/parser/ELParser.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
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... | resolved fixed | ccc1014 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-08-31T21:06:01Z | 2008-08-21T12:00:00Z | java/org/apache/jasper/runtime/JspContextWrapper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,628 | Bug 45628 ExtensionValidator doesn't handle wrapped lines in MANIFEST.MF | null | resolved fixed | 3773ec4 | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T15:46:00Z | 2008-08-13T17:53:20Z | java/org/apache/catalina/util/ManifestResource.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this 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 ... |
45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | resolved fixed | 83fe69a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T20:00:36Z | 2008-07-16T20:26:40Z | java/org/apache/cometd/bayeux/Bayeux.java | |
45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | resolved fixed | 83fe69a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T20:00:36Z | 2008-07-16T20:26:40Z | java/org/apache/cometd/bayeux/Channel.java | |
45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | resolved fixed | 83fe69a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T20:00:36Z | 2008-07-16T20:26:40Z | java/org/apache/cometd/bayeux/Client.java | |
45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | resolved fixed | 83fe69a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T20:00:36Z | 2008-07-16T20:26:40Z | java/org/apache/cometd/bayeux/DataFilter.java | |
45,413 | Bug 45413 Contribution of Bayeux implementation for Tomcat | null | resolved fixed | 83fe69a | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | 2008-09-02T20:00:36Z | 2008-07-16T20:26:40Z | java/org/apache/cometd/bayeux/Listener.java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.