svn commit: r1582629 - in /tomcat/trunk: java/org/apache/catalina/ha/tcp/LocalStrings.properties java/org/apache/catalina/ha/tcp/LocalStrings_es.properties java/org/apache/catalina/ha/tcp/SimpleTcpClu
Author: kfujino Date: Fri Mar 28 08:05:11 2014 New Revision: 1582629 URL: http://svn.apache.org/r1582629 Log: Remove the implementation of org.apache.catalina.LifecycleListener from org.apache.catalina.ha.tcp.SimpleTcpCluster. SimpleTcpCluster does not work as LifecycleListener, it works as nested components of Host or Engine. Modified: tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings.properties tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings_es.properties tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings.properties?rev=1582629&r1=1582628&r2=1582629&view=diff == --- tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings.properties Fri Mar 28 08:05:11 2014 @@ -28,5 +28,4 @@ ReplicationValve.session.found=Context { ReplicationValve.session.indicator=Context {0}: Primarity of session {0} in request attribute {1} is {2}. ReplicationValve.session.invalid=Context {0}: Requested session {1} is invalid, removed or not replicated at this node. ReplicationValve.stats=Average request time= {0} ms for Cluster overhead time={1} ms for {2} requests {3} filter requests {4} send requests {5} cross context requests (Request={6} ms Cluster={7} ms). -SimpleTcpCluster.event.log=Cluster receive listener event {0} with data {1} Modified: tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings_es.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings_es.properties?rev=1582629&r1=1582628&r2=1582629&view=diff == --- tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings_es.properties (original) +++ tomcat/trunk/java/org/apache/catalina/ha/tcp/LocalStrings_es.properties Fri Mar 28 08:05:11 2014 @@ -28,5 +28,4 @@ ReplicationValve.session.found = Context ReplicationValve.session.indicator = Context {0}\: Primarity of session {0} in request attribute {1} is {2}. ReplicationValve.session.invalid = Context {0}\: Requested session {1} is invalid, removed or not replicated at this node. ReplicationValve.stats = Average request time\= {0} ms for Cluster overhead time\={1} ms for {2} requests {3} filter requests {4} send requests {5} cross context requests (Request\={6} ms Cluster\={7} ms). -SimpleTcpCluster.event.log = Cluster receive listener event {0} with data {1} Modified: tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java?rev=1582629&r1=1582628&r2=1582629&view=diff == --- tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java (original) +++ tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Fri Mar 28 08:05:11 2014 @@ -33,9 +33,7 @@ import org.apache.catalina.Context; import org.apache.catalina.Engine; import org.apache.catalina.Host; import org.apache.catalina.Lifecycle; -import org.apache.catalina.LifecycleEvent; import org.apache.catalina.LifecycleException; -import org.apache.catalina.LifecycleListener; import org.apache.catalina.LifecycleState; import org.apache.catalina.Manager; import org.apache.catalina.Valve; @@ -72,8 +70,7 @@ import org.apache.tomcat.util.res.String * @author Peter Rossbach */ public class SimpleTcpCluster extends LifecycleMBeanBase -implements CatalinaCluster, LifecycleListener, MembershipListener, -ChannelListener{ +implements CatalinaCluster, MembershipListener, ChannelListener{ public static final Log log = LogFactory.getLog(SimpleTcpCluster.class); @@ -511,19 +508,6 @@ public class SimpleTcpCluster extends Li } -/** - * Use as base to handle start/stop/periodic Events from host. Currently - * only log the messages as trace level. - * - * @see org.apache.catalina.LifecycleListener#lifecycleEvent(org.apache.catalina.LifecycleEvent) - */ -@Override -public void lifecycleEvent(LifecycleEvent lifecycleEvent) { -if (log.isTraceEnabled()) -log.trace(sm.getString("SimpleTcpCluster.event.log", lifecycleEvent.getType(), lifecycleEvent.getData())); -} - - // -- public @Override Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1582629&r1=1582628&r2=1582629&view=diff == --- tomcat/trunk/webapps
svn commit: r1582632 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java
Author: kfujino Date: Fri Mar 28 08:08:49 2014 New Revision: 1582632 URL: http://svn.apache.org/r1582632 Log: Deprecate unused lifecycleEvent method. Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java?rev=1582632&r1=1582631&r2=1582632&view=diff == --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Fri Mar 28 08:08:49 2014 @@ -644,8 +644,10 @@ public class SimpleTcpCluster extends Li * only log the messages as trace level. * * @see org.apache.catalina.LifecycleListener#lifecycleEvent(org.apache.catalina.LifecycleEvent) + * @deprecated Unused - will be removed in Tomcat 8.0.x */ @Override +@Deprecated public void lifecycleEvent(LifecycleEvent lifecycleEvent) { if (log.isTraceEnabled()) log.trace(sm.getString("SimpleTcpCluster.event.log", lifecycleEvent.getType(), lifecycleEvent.getData())); - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "summit-na-2014" by markt
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "summit-na-2014" page has been changed by markt: https://wiki.apache.org/tomcat/summit-na-2014?action=diff&rev1=1&rev2=2 Comment: Add some more topics * Road map for future development prior to the next round of JavaEE specifications * AJP support for HTTP upgrade + * Make JSR 356 Java WebSocket 1.0 server implementation depend on Tomcat internals + * No longer container neutral + * Simpler code + * Better performance + * [[Cookies]] + * Tomcat 8 stability * Please add your topics here... - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
buildbot failure in ASF Buildbot on tomcat-7-trunk
The Buildbot has detected a new failure on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1841 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build Source Stamp: [branch tomcat/tc7.0.x/trunk] 1582632 Blamelist: kfujino BUILD FAILED: failed compile_1 sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1582696 - in /tomcat/site/trunk/docs/tomcat-8.0-doc: ./ api/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache/catalina/authenticator/
Author: markt Date: Fri Mar 28 11:10:19 2014 New Revision: 1582696 URL: http://svn.apache.org/r1582696 Log: Update docs for 8.0.5 release [This commit notification would consist of 82 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1582700 - in /tomcat/site/trunk: ./ docs/ xdocs/
Author: markt Date: Fri Mar 28 11:15:43 2014 New Revision: 1582700 URL: http://svn.apache.org/r1582700 Log: Update site for 8.0.5 release Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/docs/oldnews.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/xdocs/download-80.xml tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/migration-8.xml tomcat/site/trunk/xdocs/oldnews.xml tomcat/site/trunk/xdocs/whichversion.xml Modified: tomcat/site/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1582700&r1=1582699&r2=1582700&view=diff == --- tomcat/site/trunk/build.properties.default (original) +++ tomcat/site/trunk/build.properties.default Fri Mar 28 11:15:43 2014 @@ -38,7 +38,7 @@ tomcat.loc=http://www.apache.org/dist/to # - Tomcat versions - tomcat60=6.0.39 tomcat70=7.0.52 -tomcat80=8.0.3 +tomcat80=8.0.5 # - Download destination - Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1582700&r1=1582699&r2=1582700&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 28 11:15:43 2014 @@ -204,8 +204,8 @@ https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | -8.0.3 | -Browse | +8.0.5 | +Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives @@ -251,12 +251,12 @@ -8.0.3 +8.0.5 Please see the - README + README file for packaging information. It explains what every distribution contains. @@ -272,44 +272,44 @@ -zip -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.zip.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.zip.md5";>md5) +zip +(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5.zip.md5";>md5) -tar.gz -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.tar.gz.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.tar.gz.md5";>md5) +tar.gz +(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5.tar.gz.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5.tar.gz.md5";>md5) -32-bit Windows zip -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-x86.zip.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-x86.zip.md5";>md5) +32-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-x86.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-x86.zip.md5";>md5) -64-bit Windows zip -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-x64.zip.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-x64.zip.md5";>md5) +64-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-x64.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-x64.zip.md5";>md5) -64-bit Itanium Windows zip -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-i64.zip.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3-windows-i64.zip.md5";>md5) +64-bit Itanium Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-i64.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v8.0.5/bin/apache-tomcat-8.0.5-windows-i64.zip.md5";>md5) -32-bit/64-bit Windows Service Installer -(https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.exe.asc";>pgp, -https://www.apache.org/dist/tomcat/tomcat-8/v8.0.3/bin/apache-tomcat-8.0.3.exe.md5";>md5) +32-bit/64-bit Windows Service Installer +(https:
svn commit: r1582703 - in /tomcat/site/trunk: docs/migration-8.html xdocs/migration-8.xml
Author: markt Date: Fri Mar 28 11:17:46 2014 New Revision: 1582703 URL: http://svn.apache.org/r1582703 Log: Add another renamed attribute Modified: tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/xdocs/migration-8.xml Modified: tomcat/site/trunk/docs/migration-8.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-8.html?rev=1582703&r1=1582702&r2=1582703&view=diff == --- tomcat/site/trunk/docs/migration-8.html (original) +++ tomcat/site/trunk/docs/migration-8.html Fri Mar 28 11:17:46 2014 @@ -387,6 +387,8 @@ of Apache Tomcat. The maxActive configuration option has been renamed to maxTotal +The maxWait configuration option has been renamed to maxWaitMillis + The JDBC driver JAR may be placed in WEB-INF/lib as an alternative to $CATALINA_BASE/lib provided that the driver class is only used by that web application. Modified: tomcat/site/trunk/xdocs/migration-8.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-8.xml?rev=1582703&r1=1582702&r2=1582703&view=diff == --- tomcat/site/trunk/xdocs/migration-8.xml (original) +++ tomcat/site/trunk/xdocs/migration-8.xml Fri Mar 28 11:17:46 2014 @@ -105,6 +105,7 @@ of Apache Tomcat. which are likely to require configuration changes. The maxActive configuration option has been renamed to maxTotal + The maxWait configuration option has been renamed to maxWaitMillis The JDBC driver JAR may be placed in WEB-INF/lib as an alternative to $CATALINA_BASE/lib provided that the driver class is only used by that web application. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat 8.0.5 (beta) available
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.0.5 (beta). Apache Tomcat 8 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language and Java WebSocket technologies. Apache Tomcat 8 is aligned with Java EE 7. In addition to supporting updated versions of the Java EE specifications, Tomcat 8 includes a number of improvements compared to Tomcat 7. The notable changes include: - Support for Java Servlet 3.1, JavaServer Pages 2.3, Java Unified Expression Language 3.0 and Java WebSocket 1.0. - The default connector implementation is now the Java non-blocking implementation (NIO) for both HTTP and AJP. - A new resources implementation that replaces Aliases, VirtualLoader, VirtualDirContext, JAR resources and external repositories with a single, consistent approach for configuring additional web application resources. The new resources implementation can also be used to implement overlays (using a master WAR as the basis for multiple web applications that each have their own customizations). Apache Tomcat 8.0.5 includes numerous fixes for issues identified in 8.0.3 as well as a number of other enhancements and changes. The notable changes since 8.0.3 include: - Update the Eclipse JDT compiler to enable full Java 8 support in JSPs. - Update the default database connection pool implementation based on a repackaged Apache Commons DBCP to use the DBCP 2.0 release. - Add new, experimental HTTP and AJP connectors based on NIO2. Please refer to the change log for the complete list of changes: http://tomcat.apache.org/tomcat-8.0-doc/changelog.html The purpose of this beta release is to give users an opportunity to test Tomcat 8 and to provide feedback to the Tomcat community. Although it is a beta release, it is expected to run stably and is being used in production at the ASF for the ASF's Jira instance. The beta status is primarily because the Tomcat developers feel more feedback is required before a stable release because there may be a small amount of further refactoring. Note: This version has 4 zip binaries: a generic one and three bundled with Tomcat native binaries for Windows operating systems running on different CPU architectures. Downloads: http://tomcat.apache.org/download-80.cgi Migration guides from Apache Tomcat 5.5.x, 6.0.x and 7.0.x: http://tomcat.apache.org/migration.html Enjoy! - The Apache Tomcat team - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1582724 - in /tomcat/site/trunk: docs/migration-8.html xdocs/migration-8.xml
Author: kkolinko Date: Fri Mar 28 12:26:27 2014 New Revision: 1582724 URL: http://svn.apache.org/r1582724 Log: Followup to r1582700 Remove stray comma after the last member of a javascript object. AFAIK, IE has problems with such commas. Modified: tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/xdocs/migration-8.xml Modified: tomcat/site/trunk/docs/migration-8.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-8.html?rev=1582724&r1=1582723&r2=1582724&view=diff == --- tomcat/site/trunk/docs/migration-8.html (original) +++ tomcat/site/trunk/docs/migration-8.html Fri Mar 28 12:26:27 2014 @@ -496,7 +496,7 @@ of Apache Tomcat. "8.0.0-RC10":"1552353", "8.0.1":"1562630", "8.0.3":"1565729", - "8.0.5":"1580930", + "8.0.5":"1580930" }; formSubmit.action = "http://svn.apache.org/viewvc/tomcat/trunk/"; + Modified: tomcat/site/trunk/xdocs/migration-8.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-8.xml?rev=1582724&r1=1582723&r2=1582724&view=diff == --- tomcat/site/trunk/xdocs/migration-8.xml (original) +++ tomcat/site/trunk/xdocs/migration-8.xml Fri Mar 28 12:26:27 2014 @@ -183,7 +183,7 @@ of Apache Tomcat. "8.0.0-RC10":"1552353", "8.0.1":"1562630", "8.0.3":"1565729", - "8.0.5":"1580930", + "8.0.5":"1580930" }; formSubmit.action = "http://svn.apache.org/viewvc/tomcat/trunk/"; + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1582726 - in /tomcat/site/trunk: docs/migration-6.html xdocs/migration-6.xml
Author: kkolinko Date: Fri Mar 28 12:27:33 2014 New Revision: 1582726 URL: http://svn.apache.org/r1582726 Log: Remove stray comma after the last member of a javascript object. AFAIK, IE has problems with such commas. Modified: tomcat/site/trunk/docs/migration-6.html tomcat/site/trunk/xdocs/migration-6.xml Modified: tomcat/site/trunk/docs/migration-6.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-6.html?rev=1582726&r1=1582725&r2=1582726&view=diff == --- tomcat/site/trunk/docs/migration-6.html (original) +++ tomcat/site/trunk/docs/migration-6.html Fri Mar 28 12:27:33 2014 @@ -535,7 +535,7 @@ of Apache Tomcat. "6.0.35":"1207053", "6.0.36":"1398690", "6.0.37":"1476938", - "6.0.39":"1561893", + "6.0.39":"1561893" }; formSubmit.action = "http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/"; + Modified: tomcat/site/trunk/xdocs/migration-6.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-6.xml?rev=1582726&r1=1582725&r2=1582726&view=diff == --- tomcat/site/trunk/xdocs/migration-6.xml (original) +++ tomcat/site/trunk/xdocs/migration-6.xml Fri Mar 28 12:27:33 2014 @@ -212,7 +212,7 @@ of Apache Tomcat. "6.0.35":"1207053", "6.0.36":"1398690", "6.0.37":"1476938", - "6.0.39":"1561893", + "6.0.39":"1561893" }; formSubmit.action = "http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/"; + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1582837 - /tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties
Author: kkolinko Date: Fri Mar 28 17:24:26 2014 New Revision: 1582837 URL: http://svn.apache.org/r1582837 Log: Correct message text (missing whitespace) Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties?rev=1582837&r1=1582836&r2=1582837&view=diff == --- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/websocket/server/LocalStrings.properties Fri Mar 28 17:24:26 2014 @@ -12,7 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -sci.noWebSocketSupport=JSR 356 WebSocket (Java WebSocket 1.0) support is not available when running on Java 6. To suppress this message, run Tomcat on Java 7, remove the WebSocket JARs from $CATALINA_HOME/lib or add the WebSocketJARs to the tomcat.util.scan.DefaultJarScanner.jarsToSkip property in $CATALINA_BASE/conf/catalina.properties. Note that the deprecated Tomcat 7 WebSocket API will be available. +sci.noWebSocketSupport=JSR 356 WebSocket (Java WebSocket 1.0) support is not available when running on Java 6. To suppress this message, run Tomcat on Java 7, remove the WebSocket JARs from $CATALINA_HOME/lib or add the WebSocket JARs to the tomcat.util.scan.DefaultJarScanner.jarsToSkip property in $CATALINA_BASE/conf/catalina.properties. Note that the deprecated Tomcat 7 WebSocket API will be available. serverContainer.addNotAllowed=No further Endpoints may be registered once an attempt has been made to use one of the previously registered endpoints serverContainer.configuratorFail=Failed to create configurator of type [{0}] for POJO of type [{1}] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
buildbot success in ASF Buildbot on tomcat-7-trunk
The Buildbot has detected a restored build on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1842 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build Source Stamp: [branch tomcat/tc7.0.x/trunk] 1582837 Blamelist: kkolinko Build succeeded! sincerely, -The Buildbot
Re: [VOTE] Release Apache Tomcat 7.0.53
2014-03-25 12:25 GMT+04:00 Violeta Georgieva : > The proposed Apache Tomcat 7.0.53 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.53/ > The Maven staging repo is: > https://repository.apache.org/content/repositories/orgapachetomcat-1010/ > The svn tag is: > http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_53/ > > The proposed 7.0.53 release is: > [ ] Broken - do not release > [x] Stable - go ahead and release as 7.0.53 Stable Tested with 32-bit JDKs on Windows 7. Unit tests (BIO,NIO,APR x JDK 6u45, 7u51) - OK. Smoke testing OK. Best regards, Konstantin Kolinko - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org