DO NOT REPLY [Bug 48663] New: tomcat6w.exe shows wrong default of Logging Level
https://issues.apache.org/bugzilla/show_bug.cgi?id=48663 Summary: tomcat6w.exe shows wrong default of Logging Level Product: Tomcat 6 Version: 6.0.24 Platform: PC OS/Version: Windows XP Status: NEW Severity: minor Priority: P2 Component: Native:Integration AssignedTo: dev@tomcat.apache.org ReportedBy: knst.koli...@gmail.com Steps to reproduce: 1. Install fresh Tomcat 6.0.24, or delete the following value from registry: In key HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Procrun 2.0\Tomcat6\Parameters\Log delete the value "Level" 2. Launch tomcat6w.exe 3. Go to the "Logging" page and look at the value of "Level". Actual result: The "Error" level is selected there, which is the first item in the drop-down list there. Expected result: To select the default level value, which, if I remember correctly, is Info. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48179] After startup seeing java.io.FileNotFoundException:/tldcache.ser (No such file or directory)
https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 Konstantin Kolinko changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID | Severity|normal |minor --- Comment #2 from Konstantin Kolinko 2010-02-03 00:41:51 UTC --- There is a minor issue there: This exception in TldConfig.execute(), and also one in TldConfig.processCache(), are processed with ex.printStackTrace(); Something like log.warn("Failed to write tldCache.ser file", ex); would provide a better context for this message. This applies only to 5.5. In 6.0 the same code is also present, but it is never called (as tldCache is always null there), and thus can be removed instead of trying to fix it. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48179] After startup seeing java.io.FileNotFoundException:/tldcache.ser (No such file or directory)
https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 --- Comment #3 from Konstantin Kolinko 2010-02-03 01:23:22 UTC --- Created an attachment (id=24918) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24918) patch for TC 5.5 Patch for TC 5.5 that - logs TLD cache reading and writing errors - if reading a TLD cache fails continues TLD scanning, instead of quiting -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r905950 - /tomcat/tc5.5.x/trunk/STATUS.txt
Author: kkolinko Date: Wed Feb 3 09:29:44 2010 New Revision: 905950 URL: http://svn.apache.org/viewvc?rev=905950&view=rev Log: proposal Modified: tomcat/tc5.5.x/trunk/STATUS.txt Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=905950&r1=905949&r2=905950&view=diff == --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Wed Feb 3 09:29:44 2010 @@ -180,3 +180,9 @@ http://svn.apache.org/viewvc?rev=905735&view=rev +1: kkolinko, markt -1: + +* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 + Improve processing of TLD cache file + https://issues.apache.org/bugzilla/attachment.cgi?id=24918 + +1: kkolinko + -1: - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48179] After startup seeing java.io.FileNotFoundException:/tldcache.ser (No such file or directory)
https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 --- Comment #4 from Konstantin Kolinko 2010-02-03 01:44:18 UTC --- Created an attachment (id=24919) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24919) patch for TC 6 Patch for TC 6.0 that removes code responsible for reading and writing the TLD cache file, because it is never called. (tldCache is always null) -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r905959 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: kkolinko Date: Wed Feb 3 09:52:03 2010 New Revision: 905959 URL: http://svn.apache.org/viewvc?rev=905959&view=rev Log: proposal Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=905959&r1=905958&r2=905959&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Wed Feb 3 09:52:03 2010 @@ -280,3 +280,9 @@ http://svn.apache.org/viewvc?rev=905735&view=rev +1: markt, kkolinko -1: + +* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 + Cleanup uncalled code that was used to read tldCache file + https://issues.apache.org/bugzilla/attachment.cgi?id=24919 + +1: kkolinko + -1: - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48179] After startup seeing java.io.FileNotFoundException:/tldcache.ser (No such file or directory)
https://issues.apache.org/bugzilla/show_bug.cgi?id=48179 --- Comment #5 from Konstantin Kolinko 2010-02-03 01:53:35 UTC --- Proposed the patches for 5.5 and 6.0. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[g...@vmgump]: Project tomcat-trunk-dbcp (in module tomcat-trunk) failed
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-trunk-dbcp has an issue affecting its community integration. This issue affects 2 projects, and has been outstanding for 104 runs. The current state of this project is 'Failed', with reason 'Missing Build Outputs'. For reference only, the following projects are affected by this: - tomcat-trunk : Java Servlet 3.0 & Server Pages JSP 2.1 implementation (for ... - tomcat-trunk-dbcp : Java Servlet 3.0 & Server Pages JSP 2.1 implementation (for ... Full details are available at: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Sole output [tomcat-jdbc-03022010.jar] identifier set to project name -INFO- Made directory [/srv/gump/public/workspace/tomcat-trunk/tomcat-deps] -INFO- Failed with reason missing build outputs -ERROR- Missing Output: /srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-jdbc-03022010.jar -ERROR- See Directory Listing Work for Missing Outputs -DEBUG- Extracted fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/gump_work/build_tomcat-trunk_tomcat-trunk-dbcp.html Work Name: build_tomcat-trunk_tomcat-trunk-dbcp (Type: Build) Work ended in a state of : Success Elapsed: 1 sec Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Dcommons-collections.home=/srv/gump/public/workspace/commons-collections-3.x/collections -Dcommons-dbcp.home=/srv/gump/public/workspace/apache-commons/dbcp -Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-jdbc-03022010.jar -Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps -Dcommons-pool.home=/srv/gump/public/workspace/apache-commons/pool build-tomcat-dbcp [Working Directory: /srv/gump/public/workspace/tomcat-trunk] CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/jta-spec1_0_1/jta-spec1_0_1.jar - Buildfile: /srv/gump/public/workspace/tomcat-trunk/build.xml build-manifests: [mkdir] Created dir: /srv/gump/public/workspace/tomcat-trunk/output/manifests [copy] Copying 4 files to /srv/gump/public/workspace/tomcat-trunk/output/manifests build-tomcat-dbcp: BUILD SUCCESSFUL Total time: 1 second - To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/rss.xml - Atom: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/atom.xml == Gump Tracking Only === Produced by Gump version 2.3. Gump Run 1103022010, vmgump:vmgump-public:1103022010 Gump E-mail Identifier (unique within run) #16. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48665] New: RemoteIpValve examples refer to "connector" package
https://issues.apache.org/bugzilla/show_bug.cgi?id=48665 Summary: RemoteIpValve examples refer to "connector" package Product: Tomcat 6 Version: 6.0.24 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Documentation AssignedTo: dev@tomcat.apache.org ReportedBy: bjar...@gmail.com Hi, The API doc https://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/catalina/valves/RemoteIpValve.html uses "connector" package in the examples. Took me 10 minutes to figure out :) Best regards, -Bjarni -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48665] RemoteIpValve examples refer to "connector" package
https://issues.apache.org/bugzilla/show_bug.cgi?id=48665 --- Comment #1 from Cyrille Le Clerc 2010-02-03 03:59:41 UTC --- Created an attachment (id=24920) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24920) Fixed javadoc and info variable value My mistake, sorry :-( -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48665] RemoteIpValve examples refer to "connector" package
https://issues.apache.org/bugzilla/show_bug.cgi?id=48665 --- Comment #2 from Cyrille Le Clerc 2010-02-03 04:08:02 UTC --- I verified the javadocs of RemoteIpFilter; they are ok. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Fwd: Switching incubator.apache.org to svnpubsub?
Please see Justin's proposal below for the Incubator. (From a general, public list.) I think it'd be great for Tomcat to do the same. Your thoughts / votes? Yoav -- Forwarded message -- From: Justin Erenkrantz Date: Wed, Feb 3, 2010 at 1:57 AM Subject: Switching incubator.apache.org to svnpubsub? To: gene...@incubator.apache.org Hi general@, I'd like to suggest switching incubator.apache.org over to svnpubsub. (We can do so by filing a JIRA like INFRA-2349: http://issues.apache.org/jira/browse/INFRA-2349) This would mean that any commits made to the site-publish tree would automatically be deployed to the site. No more delays, no more SSH and SVN up fun. Yay. This does mean you trade off the fact that you can't delay anything - but, in general, I think that's fine for the incubator site and would substantially lower the barrier of entry to folks working on the Incubator site. Often times, people's first experience with the ASF is through the podlings, so I think it would be nice if we could make it a bit easier to publish the incubator.a.o site. What do folks think? -- justin - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Switching incubator.apache.org to svnpubsub?
> Please see Justin's proposal below for the Incubator. (From a > general, public list.) > > I think it'd be great for Tomcat to do the same. Your thoughts / votes? > +1 The current system is not easy for a quick publication. > > -- Forwarded message -- > From: Justin Erenkrantz > Date: Wed, Feb 3, 2010 at 1:57 AM > Subject: Switching incubator.apache.org to svnpubsub? > To: gene...@incubator.apache.org > > > Hi general@, > > I'd like to suggest switching incubator.apache.org over to svnpubsub. > (We can do so by filing a JIRA like INFRA-2349: > http://issues.apache.org/jira/browse/INFRA-2349) > > This would mean that any commits made to the site-publish tree would > automatically be deployed to the site. No more delays, no more SSH > and SVN up fun. Yay. This does mean you trade off the fact that you > can't delay anything - but, in general, I think that's fine for the > incubator site and would substantially lower the barrier of entry to > folks working on the Incubator site. Often times, people's first > experience with the ASF is through the podlings, so I think it would > be nice if we could make it a bit easier to publish the incubator.a.o > site. > > What do folks think? -- justin > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48662] context.xml expansion on deployment improvements
https://issues.apache.org/bugzilla/show_bug.cgi?id=48662 Dan Armbrust changed: What|Removed |Added CC||daniel.armbrust.l...@gmail. ||com -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Fwd: Switching incubator.apache.org to svnpubsub?
On 03/02/2010 13:21, Yoav Shapira wrote: > Please see Justin's proposal below for the Incubator. (From a > general, public list.) > > I think it'd be great for Tomcat to do the same. Your thoughts / votes? Generally +1. Need to think about how we handle the docs (including javadocs). Is there a better way than just checking the whole lot into the repo? Mark > > Yoav > > > -- Forwarded message -- > From: Justin Erenkrantz > Date: Wed, Feb 3, 2010 at 1:57 AM > Subject: Switching incubator.apache.org to svnpubsub? > To: gene...@incubator.apache.org > > > Hi general@, > > I'd like to suggest switching incubator.apache.org over to svnpubsub. > (We can do so by filing a JIRA like INFRA-2349: > http://issues.apache.org/jira/browse/INFRA-2349) > > This would mean that any commits made to the site-publish tree would > automatically be deployed to the site. No more delays, no more SSH > and SVN up fun. Yay. This does mean you trade off the fact that you > can't delay anything - but, in general, I think that's fine for the > incubator site and would substantially lower the barrier of entry to > folks working on the Incubator site. Often times, people's first > experience with the ASF is through the podlings, so I think it would > be nice if we could make it a bit easier to publish the incubator.a.o > site. > > What do folks think? -- justin > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48668] New: Template text that looks like a deferred expression can be mishandled even if EL is ignored
https://issues.apache.org/bugzilla/show_bug.cgi?id=48668 Summary: Template text that looks like a deferred expression can be mishandled even if EL is ignored Product: Tomcat 6 Version: 6.0.24 Platform: All OS/Version: All Status: NEW Severity: minor Priority: P2 Component: Jasper AssignedTo: dev@tomcat.apache.org ReportedBy: supp...@netxtra.net In some cases text that happens to look similar to a deferred expression (#{..}) can get mangled even if the EL is not active. This appears to only happen if the text in question immediately proceeds a custom tag (either a full blown custom tag or a simple .tag file tag). The initial # and { characters get removed. This happens in Tomcat v6.0.24 but did not happen in v6.0.20 so appears to be unintentional. We have been upgrading legacy sites to Tomcat v6 and have hit this problem. This problem can be recreated in a bog standard install of Tomcat v6.0.24. Create a simple .tag file that does nothing more than say 'hello'. Place a reference to this tag into a JSP with the offending text immediately after it. A test JSP that looks something like (note that EL is being ignored)... <%@ page isELIgnored="true" %> <%@ taglib tagdir="/WEB-INF/tags/custom" prefix="custom" %> Test #{foo.bar} Where the custom example tag (/WEB-INF/tags/custom/example.tag) looks like this... Hello Rather than the page returning the following... Test Hello#{foo.bar} It will return... Test Hellofoo.bar} Notice the missing # and { from the text. I don't believe the platform Tomcat is running on matters. Have seen this behaviour on both Mac OS X and Linux. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r906153 - in /tomcat/trunk/test/org/apache/catalina/deploy: TestWebXml.java TestWebXmlOrdering.java
Author: markt Date: Wed Feb 3 17:55:20 2010 New Revision: 906153 URL: http://svn.apache.org/viewvc?rev=906153&view=rev Log: Refactor Added: tomcat/trunk/test/org/apache/catalina/deploy/TestWebXmlOrdering.java - copied, changed from r905907, tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java Removed: tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java Copied: tomcat/trunk/test/org/apache/catalina/deploy/TestWebXmlOrdering.java (from r905907, tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java) URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/deploy/TestWebXmlOrdering.java?p2=tomcat/trunk/test/org/apache/catalina/deploy/TestWebXmlOrdering.java&p1=tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java&r1=905907&r2=906153&rev=906153&view=diff == --- tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java (original) +++ tomcat/trunk/test/org/apache/catalina/deploy/TestWebXmlOrdering.java Wed Feb 3 17:55:20 2010 @@ -24,14 +24,13 @@ import java.util.Set; import org.apache.catalina.deploy.WebXml; -import org.apache.catalina.startup.ContextConfig; import junit.framework.TestCase; /** - * Test case for {...@link ContextConfig}. + * Test case for {...@link WebXml} fragment ordering. */ -public class TestWebXml extends TestCase { +public class TestWebXmlOrdering extends TestCase { private WebXml app; private WebXml a; private WebXml b; - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
6.0.24 service.bat is missing
intentional? - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
and all the .exe files are gone, from the .zip file, this is a pain in the ass, no windows without installer? why the change from .20 to .24? should just be a build update? Filip On 02/03/2010 10:56 AM, Filip Hanik - Dev Lists wrote: intentional? - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[g...@vmgump]: Project tomcat-trunk-dbcp (in module tomcat-trunk) failed
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-trunk-dbcp has an issue affecting its community integration. This issue affects 2 projects. The current state of this project is 'Failed', with reason 'Missing Build Outputs'. For reference only, the following projects are affected by this: - tomcat-trunk : Java Servlet 3.0 & Server Pages JSP 2.1 implementation (for ... - tomcat-trunk-dbcp : Java Servlet 3.0 & Server Pages JSP 2.1 implementation (for ... Full details are available at: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Sole output [tomcat-jdbc-03022010.jar] identifier set to project name -INFO- Made directory [/srv/gump/public/workspace/tomcat-trunk/tomcat-deps] -INFO- Failed with reason missing build outputs -ERROR- Missing Output: /srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-jdbc-03022010.jar -ERROR- See Directory Listing Work for Missing Outputs -DEBUG- Extracted fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/gump_work/build_tomcat-trunk_tomcat-trunk-dbcp.html Work Name: build_tomcat-trunk_tomcat-trunk-dbcp (Type: Build) Work ended in a state of : Success Elapsed: 1 sec Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Dcommons-collections.home=/srv/gump/public/workspace/commons-collections-3.x/collections -Dcommons-dbcp.home=/srv/gump/public/workspace/apache-commons/dbcp -Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-jdbc-03022010.jar -Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps -Dcommons-pool.home=/srv/gump/public/workspace/apache-commons/pool build-tomcat-dbcp [Working Directory: /srv/gump/public/workspace/tomcat-trunk] CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/jta-spec1_0_1/jta-spec1_0_1.jar - Buildfile: /srv/gump/public/workspace/tomcat-trunk/build.xml build-manifests: [mkdir] Created dir: /srv/gump/public/workspace/tomcat-trunk/output/manifests [copy] Copying 4 files to /srv/gump/public/workspace/tomcat-trunk/output/manifests build-tomcat-dbcp: BUILD SUCCESSFUL Total time: 0 seconds - To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/rss.xml - Atom: http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-dbcp/atom.xml == Gump Tracking Only === Produced by Gump version 2.3. Gump Run 06000803022010, vmgump:vmgump-public:06000803022010 Gump E-mail Identifier (unique within run) #1. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48669] New: manager applications have broken links in list of deployed applications
https://issues.apache.org/bugzilla/show_bug.cgi?id=48669 Summary: manager applications have broken links in list of deployed applications Product: Tomcat 6 Version: 6.0.24 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Manager application AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com When Tomcat Web Application Manager displays list of applications (at left side) /host-manager and /manager have broken links resulting in 404 http error. This could be easily fixed by adding following section to their WEB-INF/web.xml descriptors. html/ (after servlet-mapping sections) -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
On 03/02/2010 18:07, Filip Hanik - Dev Lists wrote: > and all the .exe files are gone, from the .zip file, this is a pain in > the ass, no windows without installer? > why the change from .20 to .24? should just be a build update? As per the discussion back in June 2009, the windows binaries and native dll can be found in the windows-platform.zip files. Pick the file that matches your platform. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48670] New: manager applications have broken links in list of deployed applications
https://issues.apache.org/bugzilla/show_bug.cgi?id=48670 Summary: manager applications have broken links in list of deployed applications Product: Tomcat 5 Version: 5.5.28 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Webapps:Manager AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com When Tomcat Web Application Manager displays list of applications (at left side) /host-manager and /manager have broken links resulting in 404 http error. This could be easily fixed by adding following section to their WEB-INF/web.xml descriptors. html/ (after servlet-mapping sections) Exactly same issue exists for tomcat6 (Bug 48669) -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Fwd: Switching incubator.apache.org to svnpubsub?
On 2/3/2010 10:45 AM, Mark Thomas wrote: > On 03/02/2010 13:21, Yoav Shapira wrote: >> Please see Justin's proposal below for the Incubator. (From a >> general, public list.) >> >> I think it'd be great for Tomcat to do the same. Your thoughts / votes? > > Generally +1. Need to think about how we handle the docs (including > javadocs). Is there a better way than just checking the whole lot into > the repo? Not really, this is how httpd and apr are doing it. That said, there are now two platforms, your original svn.apache.org space and now dist.apache.org/repos/dist/, which is for publishing artifacts. It might make sense to mirror the published/released doc flavors through this new much more expandable repository. tomcat.a.o/dist/dev/ and www.apache.org/dist/tomcat/ would normally be provisioned from /repos/dist/ while the rest of the site is usually from the svn.apache.org/repos/asf/tomcat/ space. If you want certain docs/ trees to be populated from /repos/dist/, that could easily be arranged. Trunk [mutable] docs are best served from the classic svn space. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48671] New: Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link.
https://issues.apache.org/bugzilla/show_bug.cgi?id=48671 Summary: Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link. Product: Tomcat 5 Version: 5.5.28 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Webapps:Manager AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com When in /host-manager application one wants to see "Host Manager Help", link leads to 404 page. Maybe we should supply "/host-manager/../docs/virtual-hosting-howto.html" instead of non working "/host-manager/../docs/host-manager-howto.html". -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
On 2/3/2010 12:31 PM, Mark Thomas wrote: > On 03/02/2010 18:07, Filip Hanik - Dev Lists wrote: >> and all the .exe files are gone, from the .zip file, this is a pain in >> the ass, no windows without installer? >> why the change from .20 to .24? should just be a build update? > > As per the discussion back in June 2009, the windows binaries and native > dll can be found in the windows-platform.zip files. Pick the file that > matches your platform. Note also that .msi based installers can be trivially unpacked with the msiexec /a {packagename.msi} command (an administrative/install from the network install). I'm not sure of Tomcat's packaging format. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48672] New: Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link.
https://issues.apache.org/bugzilla/show_bug.cgi?id=48672 Summary: Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link. Product: Tomcat 6 Version: 6.0.24 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Manager application AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com When in /host-manager application one wants to see "Host Manager Help", link leads to 404 page. Maybe we should supply "/host-manager/../docs/virtual-hosting-howto.html" instead of non working "/host-manager/../docs/host-manager-howto.html". -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48673] New: Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts
https://issues.apache.org/bugzilla/show_bug.cgi?id=48673 Summary: Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts Product: Tomcat 5 Version: 5.5.28 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Webapps:Manager AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com If one create virtual host using /host-manager application all work as expected. Start/Stop/Remove actions. But newly created host is not persistently added to the Tomcat configuration. After restart of Tomcat there is only localhost host listed. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48672] Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link.
https://issues.apache.org/bugzilla/show_bug.cgi?id=48672 --- Comment #1 from Konstantin Kolinko 2010-02-03 10:48:12 UTC --- *** Bug 48671 has been marked as a duplicate of this bug. *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48671] Tomcat Virtual Host Manager (/host-manager) have broken "Host Manager Help" link.
https://issues.apache.org/bugzilla/show_bug.cgi?id=48671 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #1 from Konstantin Kolinko 2010-02-03 10:48:12 UTC --- *** This bug has been marked as a duplicate of bug 48672 *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48674] New: Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts
https://issues.apache.org/bugzilla/show_bug.cgi?id=48674 Summary: Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts Product: Tomcat 6 Version: 6.0.24 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Manager application AssignedTo: dev@tomcat.apache.org ReportedBy: psko...@gmail.com If one create virtual host using /host-manager application all work as expected. Start/Stop/Remove actions. But newly created host is not persistently added to the Tomcat configuration. After restart of Tomcat there is only localhost host listed. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48670] manager applications have broken links in list of deployed applications
https://issues.apache.org/bugzilla/show_bug.cgi?id=48670 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #1 from Konstantin Kolinko 2010-02-03 10:49:12 UTC --- *** This bug has been marked as a duplicate of bug 48669 *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48669] manager applications have broken links in list of deployed applications
https://issues.apache.org/bugzilla/show_bug.cgi?id=48669 --- Comment #1 from Konstantin Kolinko 2010-02-03 10:49:12 UTC --- *** Bug 48670 has been marked as a duplicate of this bug. *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48669] manager applications have broken links in list of deployed applications
https://issues.apache.org/bugzilla/show_bug.cgi?id=48669 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution||WONTFIX --- Comment #2 from Konstantin Kolinko 2010-02-03 10:50:31 UTC --- That is intentional. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48674] Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts
https://issues.apache.org/bugzilla/show_bug.cgi?id=48674 --- Comment #1 from Konstantin Kolinko 2010-02-03 10:51:37 UTC --- *** Bug 48673 has been marked as a duplicate of this bug. *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48673] Tomcat Virtual Host Manager application doesn't persist newly created virtual hosts
https://issues.apache.org/bugzilla/show_bug.cgi?id=48673 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #1 from Konstantin Kolinko 2010-02-03 10:51:37 UTC --- *** This bug has been marked as a duplicate of bug 48674 *** -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
2010/2/3 William A. Rowe Jr. : > Note also that .msi based installers can be trivially unpacked with the > msiexec /a {packagename.msi} command (an administrative/install from the > network install). I'm not sure of Tomcat's packaging format. > Tomcat uses NSIS. http://nsis.sourceforge.net/ It can be unpacked by certain archivers (e.g. by 7-zip that I am using). Best regards, Konstantin Kolinko - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r906183 - in /tomcat/trunk: java/org/apache/catalina/ java/org/apache/catalina/core/ java/org/apache/catalina/deploy/ test/org/apache/ test/org/apache/catalina/deploy/
Author: markt Date: Wed Feb 3 19:10:48 2010 New Revision: 906183 URL: http://svn.apache.org/viewvc?rev=906183&view=rev Log: Servlet 3.0 Effective major/minor version support Added: tomcat/trunk/test/org/apache/catalina/deploy/TestWebXml.java (with props) Modified: tomcat/trunk/java/org/apache/catalina/Context.java tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java tomcat/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/trunk/java/org/apache/catalina/deploy/LocalStrings.properties tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java tomcat/trunk/test/org/apache/TestAll.java Modified: tomcat/trunk/java/org/apache/catalina/Context.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Context.java?rev=906183&r1=906182&r2=906183&view=diff == --- tomcat/trunk/java/org/apache/catalina/Context.java (original) +++ tomcat/trunk/java/org/apache/catalina/Context.java Wed Feb 3 19:10:48 2010 @@ -1128,5 +1128,33 @@ * @param path The path to the desired resource */ public String getRealPath(String path); + + +/** + * Return the effective major version of the Servlet spec used by this + * context. + */ +public int getEffectiveMajorVersion(); + + +/** + * Set the effective major version of the Servlet spec used by this + * context. + */ +public void setEffectiveMajorVersion(int major); + + +/** + * Return the effective minor version of the Servlet spec used by this + * context. + */ +public int getEffectiveMinorVersion(); + + +/** + * Set the effective minor version of the Servlet spec used by this + * context. + */ +public void setEffectiveMinorVersion(int minor); } Modified: tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java?rev=906183&r1=906182&r2=906183&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java Wed Feb 3 19:10:48 2010 @@ -1348,15 +1348,13 @@ @Override public int getEffectiveMajorVersion() { -// TODO SERVLET3 -return 0; +return context.getEffectiveMajorVersion(); } @Override public int getEffectiveMinorVersion() { -// TODO SERVLET3 -return 0; +return context.getEffectiveMinorVersion(); } Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardContext.java?rev=906183&r1=906182&r2=906183&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Wed Feb 3 19:10:48 2010 @@ -763,8 +763,28 @@ */ private boolean logEffectiveWebXml = false; +private int effectiveMajorVersion = 3; + +private int effectiveMinorVersion = 0; + // - Context Properties +public int getEffectiveMajorVersion() { +return effectiveMajorVersion; +} + +public void setEffectiveMajorVersion(int effectiveMajorVersion) { +this.effectiveMajorVersion = effectiveMajorVersion; +} + +public int getEffectiveMinorVersion() { +return effectiveMinorVersion; +} + +public void setEffectiveMinorVersion(int effectiveMinorVersion) { +this.effectiveMinorVersion = effectiveMinorVersion; +} + public void setLogEffectiveWebXml(boolean logEffectiveWebXml) { this.logEffectiveWebXml = logEffectiveWebXml; } Modified: tomcat/trunk/java/org/apache/catalina/deploy/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/deploy/LocalStrings.properties?rev=906183&r1=906182&r2=906183&view=diff == --- tomcat/trunk/java/org/apache/catalina/deploy/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/catalina/deploy/LocalStrings.properties Wed Feb 3 19:10:48 2010 @@ -38,4 +38,6 @@ webXml.mergeConflictSessionTimeout=The session timeout was defined inconsistently in multiple fragments with different values including fragment with name [{0}] located at [{1}] webXml.mergeConflictSessionTrackingMode=The session tracking modes were defined inconsistently in multiple fragments including fragment with name [{0}] located at [{1}] webXml.mergeConflictString=The [{0}] with name [{1}] was defined inconsistently in mult
DO NOT REPLY [Bug 48675] New: test/build.xml wrong package name for TestCookies
https://issues.apache.org/bugzilla/show_bug.cgi?id=48675 Summary: test/build.xml wrong package name for TestCookies Product: Tomcat 6 Version: 6.0.24 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: akostadi...@friendofpooh.com Created an attachment (id=24923) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24923) patch to fix See http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk/test/build.xml It is trying to compile and run org.apache.catalina.tomcat.util.http.TestCookies but seems like it was moved to org.apache.tomcat.util.http.TestCookies Attaching the patch to correct. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Host Manager Persistent (bug 48674)
https://issues.apache.org/bugzilla/show_bug.cgi?id=48674 Would whoever is in charge of the host manager app like some assistance with this one? If not, that's fine, I just thought I'd offer if they're interested. Thanks! -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Open BlueDragon Steering Committee Railo Community Distributions - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48677] New: SSL with Form fallback authenticator no longer works in 6.0.24
https://issues.apache.org/bugzilla/show_bug.cgi?id=48677 Summary: SSL with Form fallback authenticator no longer works in 6.0.24 Product: Tomcat 6 Version: 6.0.24 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: pr...@swri.org For quite a while we've been using Tomcat 6.0.20 with the SSLWithFormFallbackAuthenticator described here: http://wiki.apache.org/tomcat/SSLWithFORMFallback We need to have our server first attempt to do user authentication with SSL certificates, and if that fails, let the user log in with a form. This no longer works in Tomcat 6.0.24. Users with certificates can log in successfully; if a user does not have a certificate, after the cert check fails, Tomcat seems to close the connection without sending any data back to the browser. Since the user never gets the form page, they can't log in. This log line in particular appears when a user without a certificate tries to log in with 6.0.24: WARN http-443-1 org.apache.tomcat.util.net.jsse.JSSESupport - SSL server initiated renegotiation is disabled, closing connection That warning message gets printed out between the logging statements at lines 291 and 303 of SSLWithFormFallbackAuthenticator.java. (that is, between " No certificates found in HttpRequest." and " No certificates included with this request". That warning message does not appear when a user without a cert logs in under Tomcat 6.0.20. My hunch is that this may be related to the fix for bug 46950, "SSL renegotiation does not occur when resource with CLIENT-CERT auth is requested", which was supposedly in the unreleased version 6.0.21. I'm not sure, though. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48677] SSL with Form fallback authenticator no longer works in 6.0.24
https://issues.apache.org/bugzilla/show_bug.cgi?id=48677 P. J. Reed changed: What|Removed |Added CC||pr...@swri.org -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
On 02/03/2010 07:07 PM, Filip Hanik - Dev Lists wrote: and all the .exe files are gone, from the .zip file, this is a pain in the ass, no windows without installer? why the change from .20 to .24? should just be a build update? Like Mark said, they are in the separate .zip files. This is IMHO better then before because now you have everything for each windows flavour in one place. Before some files were only in .exe, and now they are available inside stand alone .zip packages. Regards -- ^TM - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: 6.0.24 service.bat is missing
On 02/03/2010 11:31 AM, Mark Thomas wrote: On 03/02/2010 18:07, Filip Hanik - Dev Lists wrote: and all the .exe files are gone, from the .zip file, this is a pain in the ass, no windows without installer? why the change from .20 to .24? should just be a build update? As per the discussion back in June 2009, the windows binaries and native dll can be found in the windows-platform.zip files. Pick the file that matches your platform. which download would that be on this page? http://tomcat.apache.org/download-60.cgi or is it that the page hasn't been updated properly since the archives have more than the download page http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.24/bin/ Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 45063] JK-1.2.26 IIS ISAPI filter issue when running different identities running apppools
https://issues.apache.org/bugzilla/show_bug.cgi?id=45063 Steve Ryan changed: What|Removed |Added CC||st...@acme.ie --- Comment #2 from Steve Ryan 2010-02-03 15:45:41 UTC --- We are also seeing this issue when we use JK 1.2.28. It is reproducible using IIS 6 and IIS 7. Our web application lives under the "Default Web Site" in IIS, and has its own application pool. The redirector lives under the DefaultAppPool. If our web application sends a request to the redirector, the w3wp.exe process for the DefaultAppPool will frquently crash. I say "frequently" because sometimes it works without error. This is only an issue if the DefaultAppPool runs using the "Local Service" or "Network Service" identity. If we set the DefaultAppPool to run using the "Local System" identity, everything works as expected. Below are details of the crash: Function Arg1 Arg2 Arg3 ntdll!RtlpWaitOnCriticalSection+c5 4b66d376 ntdll!RtlEnterCriticalSection+152 6a6ee4e8 6a6b9ae6 isapi_redirect!TerminateFilter+c24b 76bbcc54 isapi_redirect+9ae6 01459180 4b66d376 isapi_redirect!TerminateFilter+21435 1000 01b6dd18 isapi_redirect!HttpExtensionProc+29c 732448ee 73243b7a iisutil!STRU::STRU+c 73243b7a 0157e69c 7327a93f nativerd!CONFIG_ELEMENT::ReferenceConfigElement+f 000cf7f0 7327a970 nativerd!CONFIG_ELEMENT_LIST::GetMergedElement+483 73243e08 0157eaa8 0x0157e68c NTDLL!RTLPWAITONCRITICALSECTION+C5In w3wp__PID__5276__Date__02_01_2010__Time_01_13_27PM__226__Second_Chance_Excep tion_C005.dmp the assembly instruction at ntdll!RtlpWaitOnCriticalSection+c5 in C:\Windows\System32\ntdll.dll from Microsoft Corporation has caused an access violation exception (0xC005) when trying to write to memory location 0x0014 on thread 5 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
mod_proxy vs mod_jk
A very good article about mod_proxy and mod_jk, in french : http://bit.ly/9bI6va Take a look at the comments and requests about possible future directions. Regards - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org