On 17/05/2010, Mark Thomas <ma...@apache.org> wrote: > All, > > The 7.0.0-RC1 process worked reasonably well so I am going stick with > generating RC's for now. The next Tomcat 7.0.0 release candiate is ready > for testing. 7.0.0-RC2 can > be obtained from: > http://people.apache.org/~markt/dev/tomcat-7/v7.0.0-RC2/ > The svn tag is: > http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_0_RC2/ > > Please test this release candidate and provide feedback.
Both the zip and exe install and run OK on Win/XP. However, the resulting installations have slight differences between the files in the conf/ directory. See attached file. [If that does not make the list, I can create a Buzilla if necessary] One difference is just a comment (but a useful one) but the others look more substantial. Also, some of the MANIFEST.MF files in the jars have blank lines in the middle of the property list. These appear just before the Name: entry. Dunno whether that is intentional; it just looks a bit odd. The SVN tag contains modules/ which is not in the source archives. It would be less confusing if the two were identical. Otherwise the archives look good, and all the jars (apart from ecj) have N&L files and useful Manifests.
--- server.xml Mon May 17 18:51:32 2010 +++ server.xml Wed May 19 01:10:01 2010 @@ -27,6 +27,8 @@ <Listener className="org.apache.catalina.core.JasperListener" /> <!-- Prevent memory leaks due to use of particular java/javax APIs--> <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /> + <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html --> + <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" /> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> <!-- Global JNDI resources @@ -106,6 +108,13 @@ <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> --> + <!-- The request dumper valve dumps useful debugging information about + the request and response data received and sent by Tomcat. + Documentation at: /docs/config/valve.html --> + <!-- + <Valve className="org.apache.catalina.valves.RequestDumperValve"/> + --> + <!-- This Realm uses the UserDatabase configured in the global JNDI resources under the key "UserDatabase". Any edits that are performed against this UserDatabase are immediately @@ -117,7 +126,8 @@ Note: XML Schema validation will not work with Xerces 2.2. --> <Host name="localhost" appBase="webapps" - unpackWARs="true" autoDeploy="true"> + unpackWARs="true" autoDeploy="true" + xmlValidation="false" xmlNamespaceAware="false"> <!-- SingleSignOn valve, share authentication between web applications Documentation at: /docs/config/valve.html --> --- tomcat-users.xml Mon May 17 18:51:32 2010 +++ tomcat-users.xml Wed May 19 01:10:01 2010 @@ -1,4 +1,4 @@ -<?xml version='1.0' encoding='utf-8'?> +<?xml version='1.0' encoding='cp1252'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with @@ -16,11 +16,6 @@ limitations under the License. --> <tomcat-users> -<!-- - NOTE: By default, no user is included in the "manager-gui" role required - to operate the "/manager/html" web application. If you wish to use this app, - you must define such a user - the username and password are arbitrary. ---> <!-- NOTE: The sample user and role entries below are wrapped in a comment and thus are ignored when reading this file. Do not forget to remove
--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org