svn commit: r900088 - in /tomcat/trunk/java/org/apache/catalina: Context.java core/ApplicationContext.java core/ApplicationFilterRegistration.java core/LocalStrings.properties
Author: markt Date: Sun Jan 17 10:37:17 2010 New Revision: 900088 URL: http://svn.apache.org/viewvc?rev=900088&view=rev Log: Servlet 3.0. Implement ServletContext.addFilter(String,String) Added: tomcat/trunk/java/org/apache/catalina/core/ApplicationFilterRegistration.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/LocalStrings.properties Modified: tomcat/trunk/java/org/apache/catalina/Context.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Context.java?rev=900088&r1=900087&r2=900088&view=diff == --- tomcat/trunk/java/org/apache/catalina/Context.java (original) +++ tomcat/trunk/java/org/apache/catalina/Context.java Sun Jan 17 10:37:17 2010 @@ -500,6 +500,17 @@ */ public void addFilterMap(FilterMap filterMap); +/** + * Add a filter mapping to this Context before the mappings defined in the + * deployment descriptor but after any other mappings added via this method. + * + * @param filterMap The filter mapping to be added + * + * @exception IllegalArgumentException if the specified filter name + * does not match an existing filter definition, or the filter mapping + * is malformed + */ +public void addFilterMapBefore(FilterMap filterMap); /** * Add the classname of an InstanceListener to be added to each 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=900088&r1=900087&r2=900088&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/ApplicationContext.java Sun Jan 17 10:37:17 2010 @@ -54,6 +54,7 @@ import org.apache.catalina.Wrapper; import org.apache.catalina.connector.Connector; import org.apache.catalina.deploy.ApplicationParameter; +import org.apache.catalina.deploy.FilterDef; import org.apache.catalina.util.Enumerator; import org.apache.catalina.util.RequestUtil; import org.apache.catalina.util.ResourceSet; @@ -816,7 +817,7 @@ public FilterRegistration.Dynamic addFilter(String filterName, -String className) throws IllegalStateException { +String filterClass) throws IllegalStateException { if (context.initialized) { //TODO Spec breaking enhancement to ignore this restriction @@ -825,12 +826,23 @@ getContextPath())); } -if (context.findFilterDef(filterName) != null) { -return null; +FilterDef filterDef = context.findFilterDef(filterName); + +// Assume a 'complete' FilterRegistration is one that has a class and +// a name +if (filterDef == null) { +filterDef = new FilterDef(); +} else { +if (filterDef.getFilterName() != null && +filterDef.getFilterClass() != null) { +return null; +} } -// TODO SERVLET3 -return null; +// Name must already be set +filterDef.setFilterClass(filterClass); + +return new ApplicationFilterRegistration(filterDef, context); } Added: tomcat/trunk/java/org/apache/catalina/core/ApplicationFilterRegistration.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/ApplicationFilterRegistration.java?rev=900088&view=auto == --- tomcat/trunk/java/org/apache/catalina/core/ApplicationFilterRegistration.java (added) +++ tomcat/trunk/java/org/apache/catalina/core/ApplicationFilterRegistration.java Sun Jan 17 10:37:17 2010 @@ -0,0 +1,210 @@ +/* + * 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 not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * 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. + */ + +package org.apache.catalina.core; + +import java.util.Collection; +import java.util.Enu
svn commit: r900113 - in /tomcat/trunk/res: welcome.bin.html welcome.main.html
Author: markt Date: Sun Jan 17 11:58:00 2010 New Revision: 900113 URL: http://svn.apache.org/viewvc?rev=900113&view=rev Log: Remove broken link Modified: tomcat/trunk/res/welcome.bin.html tomcat/trunk/res/welcome.main.html Modified: tomcat/trunk/res/welcome.bin.html URL: http://svn.apache.org/viewvc/tomcat/trunk/res/welcome.bin.html?rev=900113&r1=900112&r2=900113&view=diff == --- tomcat/trunk/res/welcome.bin.html (original) +++ tomcat/trunk/res/welcome.bin.html Sun Jan 17 11:58:00 2010 @@ -27,7 +27,6 @@ Release notes, with important information about known issues http://tomcat.apache.org/tomc...@version_major_minor@-doc/changelog.html";>Changelog -http://tomcat.apache.org/tomc...@version_major_minor@-doc/status.html";>Status Modified: tomcat/trunk/res/welcome.main.html URL: http://svn.apache.org/viewvc/tomcat/trunk/res/welcome.main.html?rev=900113&r1=900112&r2=900113&view=diff == --- tomcat/trunk/res/welcome.main.html (original) +++ tomcat/trunk/res/welcome.main.html Sun Jan 17 11:58:00 2010 @@ -27,7 +27,6 @@ Release notes, with important information about known issues http://tomcat.apache.org/tomc...@version_major_minor@-doc/changelog.html";>Changelog -http://tomcat.apache.org/tomc...@version_major_minor@-doc/status.html";>Status - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r900114 - in /tomcat/tc6.0.x/trunk: STATUS.txt res/welcome.bin.html res/welcome.main.html webapps/docs/changelog.xml
Author: markt Date: Sun Jan 17 12:01:55 2010 New Revision: 900114 URL: http://svn.apache.org/viewvc?rev=900114&view=rev Log: Remove broken link in README.html (jfclere) Modified: tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/res/welcome.bin.html tomcat/tc6.0.x/trunk/res/welcome.main.html tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=900114&r1=900113&r2=900114&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Jan 17 12:01:55 2010 @@ -105,24 +105,6 @@ +1: kkolinko -1: -* Remove a broken link in README.html (res/welcome.main.html is copied there) - Note we have the wiki http://wiki.apache.org/tomcat/TomcatVersions. -+++ -Index: res/welcome.main.html -=== res/welcome.main.html (revision 899166) -+++ res/welcome.main.html (working copy) -@@ -27,7 +27,6 @@ - Release notes, with important information - about known issues - http://tomcat.apache.org/tomc...@version_major_minor@-doc/changelog.html";>Changelog --http://tomcat.apache.org/tomc...@version_major_minor@-doc/status.html";>Status - - -+++ - +1: jfclere, markt, kkolinko - -1: - * Add missing file extension to line-ending conversions for src distros http://svn.apache.org/viewvc?rev=899284&view=rev +1: markt,jfclere,kkolinko Modified: tomcat/tc6.0.x/trunk/res/welcome.bin.html URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/res/welcome.bin.html?rev=900114&r1=900113&r2=900114&view=diff == --- tomcat/tc6.0.x/trunk/res/welcome.bin.html (original) +++ tomcat/tc6.0.x/trunk/res/welcome.bin.html Sun Jan 17 12:01:55 2010 @@ -27,7 +27,6 @@ Release notes, with important information about known issues http://tomcat.apache.org/tomc...@version_major_minor@-doc/changelog.html";>Changelog -http://tomcat.apache.org/tomc...@version_major_minor@-doc/status.html";>Status Modified: tomcat/tc6.0.x/trunk/res/welcome.main.html URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/res/welcome.main.html?rev=900114&r1=900113&r2=900114&view=diff == --- tomcat/tc6.0.x/trunk/res/welcome.main.html (original) +++ tomcat/tc6.0.x/trunk/res/welcome.main.html Sun Jan 17 12:01:55 2010 @@ -27,7 +27,6 @@ Release notes, with important information about known issues http://tomcat.apache.org/tomc...@version_major_minor@-doc/changelog.html";>Changelog -http://tomcat.apache.org/tomc...@version_major_minor@-doc/status.html";>Status Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=900114&r1=900113&r2=900114&view=diff == --- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Sun Jan 17 12:01:55 2010 @@ -75,6 +75,9 @@ Fix implementation of log buffer size and provide a cleaner interface. (fhanik/kkolinko) + +Remove broken link in README.html. (jfclere) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r900120 - /tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
Author: markt Date: Sun Jan 17 12:31:02 2010 New Revision: 900120 URL: http://svn.apache.org/viewvc?rev=900120&view=rev Log: Move entry to 6.0.24 Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=900120&r1=900119&r2=900120&view=diff == --- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Sun Jan 17 12:31:02 2010 @@ -33,6 +33,15 @@ + + + + +Remove broken link in README.html. (jfclere) + + + + @@ -75,9 +84,6 @@ Fix implementation of log buffer size and provide a cleaner interface. (fhanik/kkolinko) - -Remove broken link in README.html. (jfclere) - - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r900124 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt dist.xml webapps/docs/changelog.xml
Author: markt Date: Sun Jan 17 12:36:09 2010 New Revision: 900124 URL: http://svn.apache.org/viewvc?rev=900124&view=rev Log: Add .notice to EOL conversion Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/dist.xml tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Jan 17 12:36:09 2010 @@ -1,2 +1,2 @@ /tomcat:883362 -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890349-890350,890417,891185-891187,891583,892198,892341,892415,892464,892555,892812,892814,892817,892843,892887,893321,893493,894580,894586,894805,894831,895013,895045,895057,895703,896370,896384,897380-897381,897776,898126,898256,898468,898527,898555,898558,898718,898836 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890349-890350,890417,891185-891187,891583,892198,892341,892415,892464,892555,892812,892814,892817,892843,892887,893321,893493,894580,894586,894805,894831,895013,895045,895057,895703,896370,896384,897
Re: svn commit: r899380 - /tomcat/trunk/dist.xml
On 16/01/2010 20:00, Konstantin Kolinko wrote: > 2010/1/14 : >> Author: markt >> Date: Thu Jan 14 19:48:41 2010 >> New Revision: 899380 >> >> URL: http://svn.apache.org/viewvc?rev=899380&view=rev >> Log: >> Skipping installer shouldn't break package-winzip target >> >> Modified: >>tomcat/trunk/dist.xml >> > > I think that all content of the new "win-prepare" target (added in > this rev) belongs to the existing "dist-static" target. > > I wonder, why none of the "package-" targets have explicit > dependencies on "dist-" targets. Stuff to sort out post 6.0.24, along with any remaining line-ending issues like the windows installer and the deployer packages. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r900129 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt dist.xml webapps/docs/changelog.xml
Author: markt Date: Sun Jan 17 12:41:54 2010 New Revision: 900129 URL: http://svn.apache.org/viewvc?rev=900129&view=rev Log: .zip distributions should have windows line endings Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/dist.xml tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Jan 17 12:41:54 2010 @@ -1,2 +1,2 @@ /tomcat:883362 -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890349-890350,890417,891185-891187,891583,892198,892341,892415,892464,892555,892812,892814,892817,892843,892887,893321,893493,894580,894586,894805,894831,895013,895045,895057,895703,896370,896384,897380-897381,897776,898126,898256,898468,898527,898555,898558,898718,898836,899284 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890349-890350,890417,891185-891187,891583,892198,892341,892415,892464,892555,892812,892814,892817,892843,892887,893321,893493,894580,894586,894805,894831,895013,895045,89
svn commit: r900130 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: markt Date: Sun Jan 17 12:43:34 2010 New Revision: 900130 URL: http://svn.apache.org/viewvc?rev=900130&view=rev Log: Vote 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=900130&r1=900129&r2=900130&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Jan 17 12:43:34 2010 @@ -103,7 +103,7 @@ TC 5.5. http://svn.apache.org/viewvc?rev=899124&view=rev +1: kkolinko - -1: + -1: markt only because it changes the default in 6.0.x * Fix TCK failures with security manager due to fix for 47774 http://svn.apache.org/viewvc?rev=899420&view=rev - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r900131 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt java/org/apache/catalina/security/SecurityClassLoad.java java/org/apache/catalina/session/StandardSession.java webapps/docs/changelog.xml
Author: markt Date: Sun Jan 17 12:46:53 2010 New Revision: 900131 URL: http://svn.apache.org/viewvc?rev=900131&view=rev Log: Fix TCK failures with security manager due to regression in previous fix for 47774 Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/java/org/apache/catalina/security/SecurityClassLoad.java tomcat/tc6.0.x/trunk/java/org/apache/catalina/session/StandardSession.java tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Jan 17 12:46:53 2010 @@ -1,2 +1,2 @@ /tomcat:883362 -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890349-890350,890417,891185-891187,891583,892198,892341,892415,892464,892555,892812,892814,892817,892843,892887,893321,893493,894580,894586,894805,894831,895013,895045,895057,895703,896370,896384,897380-897381,897776,898126,898256,898468,898527,898555,898558,898718,898836,899284,899348 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,77 0876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,8902 65,890
[Tomcat Wiki] Update of "PoweredBy" by Nitai
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by Nitai. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=221&rev2=222 -- {{http://www.duramental.de/images/logo/meria.gif}} "Duramental Online-Shop" [[http://www.duramental.de|DURAMENTAL Glutathion]] runs on Tomcat and is realized with JSP-Pages. The Backend is a client solution based on swing - a complete Java-App! + = Razuna = + {{http://s.razuna.com/razuna_logo-200.png}} + [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundles with Tomcat 6.x and their [[http://razuna.com|Razuna Hosted Platform]] offering runs on Tomcat as well. + <> == More Stuff == - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by Nitai
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by Nitai. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=222&rev2=223 -- = Razuna = {{http://s.razuna.com/razuna_logo-200.png}} - [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundles with Tomcat 6.x and their [[http://razuna.com|Razuna Hosted Platform]] offering runs on Tomcat as well. + [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundled with Tomcat 6.x, also their Virtual Server Image comes preinstalled with Tomcat 6.x. Their [[http://razuna.com|Razuna Hosted Platform]] offering, a hosted Digital Asset Management solution, runs on Tomcat as well. <> == More Stuff == - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by Nitai
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by Nitai. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=223&rev2=224 -- {{http://opticalhost.com.br/imagens/topo2/canto01_topo.gif}} [[http://www.opticalhost.com.br/|Opticalhost - Soluçoes para o seu site]] provides webhosting with JSP/Servlets support using Tomcat. + = Razuna = + {{http://s.razuna.com/razuna_logo-200.png}} + [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundled with Tomcat 6.x, also their Virtual Server Image comes preinstalled with Tomcat 6.x. Their [[http://razuna.com|Razuna Hosted Platform]] offering, a hosted Digital Asset Management solution, runs on Tomcat as well. <> == Surveys and Other Evidence of Usage == @@ -563, +566 @@ = Duramental Shop = {{http://www.duramental.de/images/logo/meria.gif}} "Duramental Online-Shop" [[http://www.duramental.de|DURAMENTAL Glutathion]] runs on Tomcat and is realized with JSP-Pages. The Backend is a client solution based on swing - a complete Java-App! - - = Razuna = - {{http://s.razuna.com/razuna_logo-200.png}} - [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundled with Tomcat 6.x, also their Virtual Server Image comes preinstalled with Tomcat 6.x. Their [[http://razuna.com|Razuna Hosted Platform]] offering, a hosted Digital Asset Management solution, runs on Tomcat as well. <> == More Stuff == - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r900130 - /tomcat/tc6.0.x/trunk/STATUS.txt
2010/1/17 : > Author: markt > Date: Sun Jan 17 12:43:34 2010 > New Revision: 900130 > > URL: http://svn.apache.org/viewvc?rev=900130&view=rev > Log: > Vote > > Modified: > tomcat/tc6.0.x/trunk/STATUS.txt > > * Allow compliance with SRV.15.2.22.1 to be controlled separately > from STRICT_SERVLET_COMPLIANCE, and turn it on by default. (..) > TC 5.5. > http://svn.apache.org/viewvc?rev=899124&view=rev > +1: kkolinko > - -1: > + -1: markt only because it changes the default in 6.0.x > It is already "true" unconditionally in TC 5.5 since rev.371866 (Tue Jan 24 08:52:54 2006 UTC) that is nearly 4 years now. http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/connector/Response.java?r1=371866&r2=371865&pathrev=371866 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r900130 - /tomcat/tc6.0.x/trunk/STATUS.txt
On 17/01/2010 14:45, Konstantin Kolinko wrote: > 2010/1/17 : >> Author: markt >> Date: Sun Jan 17 12:43:34 2010 >> New Revision: 900130 >> >> URL: http://svn.apache.org/viewvc?rev=900130&view=rev >> Log: >> Vote >> >> Modified: >>tomcat/tc6.0.x/trunk/STATUS.txt >> > >> * Allow compliance with SRV.15.2.22.1 to be controlled separately >> from STRICT_SERVLET_COMPLIANCE, and turn it on by default. > (..) >> TC 5.5. >> http://svn.apache.org/viewvc?rev=899124&view=rev >> +1: kkolinko >> - -1: >> + -1: markt only because it changes the default in 6.0.x >> > > It is already "true" unconditionally in TC 5.5 since rev.371866 (Tue > Jan 24 08:52:54 2006 UTC) that is nearly 4 years now. I know. However, I still think the 6.0.x default should remain as is. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48559] New: Security fix for CVE-2007-5333 causing interoperability problems
https://issues.apache.org/bugzilla/show_bug.cgi?id=48559 Summary: Security fix for CVE-2007-5333 causing interoperability problems Product: Tomcat 6 Version: 6.0.16 Platform: PC OS/Version: Windows Server 2003 Status: NEW Severity: regression Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: luis.aguil...@ca.com The fix implemented for CVE-2007-5333 and the related issues is breaking the interoperability with other third party products. The fix for this issue, as I understand, has Tomcat encapsulate cookie date between double-quotes (") such that a cookie, which prior to 6.0.12 would have read like this: cookiename = cookiedata now reads like this: cookiename = "cookiedata" The presence of the double-quotes in the begining and end of the cookie data is causing problems to several third-party applications which assume that the double-quote is in fact part of the cookie data. Our appplication, for instance, encrypts the cookie data and then encodes using Base64. Hence, it has difficulty processing the double-quotes that precede and end the cookie data. Changing our application could be considered if the number of cookies was small. However, given the design of our application, users can create all sorts of different cookies, hence having an arbitrary rule that ignores or strips the double-quotes of any cookies it receives is not feasible. It should be noted that while our application runs in Tomcat, the problem affects components of our application that do NOT run on Tomcat. I would like to request that the Tomcat team reconsider it's approach towards resolving this security vulnerabilty such that it does not break interoperability with other third party applications. -- 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 48559] Security fix for CVE-2007-5333 causing interoperability problems
https://issues.apache.org/bugzilla/show_bug.cgi?id=48559 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Mark Thomas 2010-01-17 10:18:30 GMT --- The fix for CVE-2007-5333 essentially made Tomcat apply the various cookie specifications more strictly. Where we can safely do so, options have been added to reduce the strictness of these checks. The '=' characters that can appear in base64 data will cause the quoting. A new option will be included in the next 6.0.x release that allows = to be used without the quotes being added. This may help. The quotes should be transparent to applications that set and read cookie values through the Servlet API. If they are not, that is probably a bug in Tomcat. Applications that read and set cookies directly should be able to handle specification compliant cookies. If they cannot, that is probably a bug in those applications. Depending on circumstances, one option may be to bypass the Servlet API and set/read the cookie headers directly. Again, applications that do this should be specification compliant, although they can break the specs at their own risk. If you need assistance with a specific case, please ask - with examples - on the Tomcat users mailing list. -- 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 48559] Security fix for CVE-2007-5333 causing interoperability problems
https://issues.apache.org/bugzilla/show_bug.cgi?id=48559 LuisAguilera changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID | --- Comment #2 from LuisAguilera 2010-01-17 10:33:28 UTC --- thanks for the prompt response. Do you mean to state the the cookie specification requires that cookie data be enclosed in double-quotes? If so, then yes, this may be a bug in those third party applications, such as ours. However, it has been our experience for over 10 years that cookie data is never enclosed in double-quotes. Hence our product has been able to operate successfully with a large number of third-party products, including Tomcat (pre-6.0.12). The issue is not regarding our product when it is installed along with Tomcat. Instead, the issue is regarding the interoperability of our product running elsewhere. let me use an example to illustrate. I'm a user and I open my browser. I access a site, I do something on this site and acquire a cookie from this site. For arguments sake, this a plain html site running on Apache. Let's call this cookie something like this: app1cookie = luishasloggedintoapp1 So far so good. I can continue to traverse through various sites in my enterprise environment (which could feature applications running on various different platforms, IIS, Apache, Sun Java Web Server, Domino, WebLogic, WebSPhere, etc.) And where appropriate, other apps will read this cookie and do things with it; in some cases giving me other cookies. The problems comes when I go through an app that is hosted on Tomcat. The cookie that was previously written like this: app1cookie = luishasloggedintoapp1 Is presented to Tomcat, and after Tomcat processes it, it becomes: app1cookie = "luishasloggedintoapp1" The problem is not directly on Tomcat, since it can correctly resolve the double-quotes the enclose the cookie data. The problem is that other apps, not running on Tomcat (e.g. the plain html site on Apache), do not handle the presence of the double-quote correctly. It seems to us that forcing all apps to comply with the Tomcat double-quote requirement is a rather heavy-handed approach. I can anticipate that many other third-party applications will have difficulty with this double-quote requirement. However, if, as you state, the double-quote represents a more strict implementation of the cookie specification, then this an issue for many other third-party vendors to address. Would you please point out to me where the cookie specification specifies this double-quote requirement? thanks! -- 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
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove Webhost.uk.net, Bodhost.com from "Sites with publications" section, because no publication reference is provided. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=225&rev2=226 -- == Sites / Systems / Applications With Associated Publications == This section contains cases that publicly described their Tomcat experience or installation. - === Webhost.uk.net === - http://www.webhost.uk.net/images/logo.gif [[http://www.webhost.uk.net/reseller_hosting.html|UK Reseller Hosting]] - Proud to be Best UK Web Hosting for Apache Tomcat [[http://www.webhosting.uk.net/linux_dedicated.html|UK Dedicated Hosting]]- - Proud to be Best UK Web Hosting for Apache Tomcat - === AppFuse === {{http://today.java.net/images/tiles/111-appfuse.gif}} Raible Designs' [[http://today.java.net/pub/a/today/2004/07/15/thefuse.html|AppFuse]] runs best on Tomcat. They wrote [[http://raibledesigns.com/page/rd?anchor=resin_slower_than_tomcat_fails|an interesting post]] comparing standards-compliance and performance on Tomcat and other containers. === Bonhams === {{http://www.bonhams.com/images/BonLogoGrey.jpg}} [[http://www.bonhams.com/|Bonhams]] is an auction house founded in 1793, running Tomcat and other open-source software, as detailed in [[http://www.cio.com/archive/071506/open_source.html?action=print|this article]] from [[http://www.cio.com|CIO Magazine]]. - - === Bodhost.com === - http://bodhost.com/images/dedicatedhosting.jpg [[http://www.bodhost.com/dedicated_hosting.shtml|Dedicated Hosting]] - Proud to be Apache Tomcat Hosting Provider === Cardinal Health === {{http://www.cardinal.com/images/layout/cardinal_logo_small.gif}} [[http://www.cardinal.com/|CardinalHealth]] as documented by Sue Hildreth in [[http://www.awprofessional.com/articles/article.asp?p=100600&rl=1|this article]]. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove LeadsandDeals from "Sites with publications" section, because there is no description and domain name is taken by squatters. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=226&rev2=227 -- === E*Trade === {{http://www.etrade.com/images/ET_Logo.gif}} [[http://www.etrade.com/|E*Trade]] - a financial services company, with a story from [[http://www.eweek.com/article2/0,1895,1916587,00.asp|eweek.com]] - - === LeadsandDeals === - {{http://www.leadsanddeals.com/mypictures/leadsanddealslogo.gif}} [[http://www.leadsanddeals.com.com|LeadsandDeals.com]] === MyOtherDrive === {{http://www.myotherdrive.com/images/myotherdrive-logo-v4.jpg}} [[http://www.MyOtherDrive.com|MyOtherDrive]] an Online Backup and File Sharing provider, runs on Apache Tomcat. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove Nethosted.co.uk, Tehospedo.com.br from "Sites with publications" section, because no publication reference is provided. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=227&rev2=228 -- === MyOtherDrive === {{http://www.myotherdrive.com/images/myotherdrive-logo-v4.jpg}} [[http://www.MyOtherDrive.com|MyOtherDrive]] an Online Backup and File Sharing provider, runs on Apache Tomcat. - === NetHosted === - {{http://www.nethosted.co.uk/img/nhlogo.png}} [[http://www.nethosted.co.uk|NetHosted Ltd]] Providers of high quality Tomcat hosting on our [[http://www.nethosted.co.uk/uk-vps-hosting.php|UK VPS hosting]] and [[http://www.nethosted.co.uk/uk-dedicated-servers.php|UK Dedicated Server]] solutions. - === WalMart === {{http://www.walmart.com/i/if/logo_always.gif}} [[http://www.walmart.com|WalMart.com]], as documented by Eugene Ciurana on [[http://www.theserverside.com/articles/article.tss?l=MigratingtoJava5|TheServerSide]]. === The Weather Channel === {{http://image.weather.com/web/common/twc/logos/onair_137x102.gif}} [[http://www.weather.com|The Weather Channel]] - and a nice [[http://www.computerworld.com/developmenttopics/websitemgmt/story/0,10801,92583,00.html|article]] from Computer World on their shift from proprietary to open source. - - === TeHospedo === - {{http://www.tehospedo.com.br/img/identidade/marca_tehospedo_hor.gif}} [[http://www.tehospedo.com.br|hospedagem de sites]] Hospedagem de sites. <> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Update logo image address for Alfresco, remove missing logos for AstroGrid, Colorado Home Helper. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=228&rev2=229 -- {{http://www.airsoftpx.com/sites/default/files/tnt_sharpsales_6_logo.jpg}} [[http://www.airsoftpx.com|Airsoft PX]] is an e-commerce site that sells [[http://www.airsoftpx.com/store/airsoft-guns|airsoft guns]] such as the [[http://www.airsoftpx.com/store/airsoft-guns/aeg-automatic-electric-guns/classic-army-m15a4-tactical-carbine|Classic Army m15a4 carbine]]. === Alfresco === - {{http://www.alfresco.org/images/gif/navbar_left_corner.gif}} [[http://www.alfresco.org/download.html|Alfresco]] is an open-source enterprise content management system. + {{http://www.alfresco.com/assets/images/header/alfresco-logo.gif}} [[http://www.alfresco.org/download.html|Alfresco]] is an open-source enterprise content management system. === Astradyne Systems === {{http://astradyne.co.uk/astradynelogo.png}} [[http://www.astradyne.co.uk/|Astradyne Systems]] - A front for a crime family? ;) === AstroGrid === - http://www.astrogrid.org/image/AGlogo [[http://wiki.astrogrid.org/bin/view/Astrogrid/WebHome|The AstroGrid]] project uses Tomcat for its web applications, as documented on their [[http://wiki.astrogrid.org/bin/view/AG2/WebAppManagement|wiki]]. + [[http://wiki.astrogrid.org/bin/view/Astrogrid/WebHome|The AstroGrid]] project uses Tomcat for its web applications, as documented on their [[http://wiki.astrogrid.org/bin/view/AG2/WebAppManagement|wiki]]. === Automated HomeFinder === {{http://www.automatedhomefinder.com/ahf_display/images/ahf_logo_mid.png}} [[http://www.automatedhomefinder.com|Colorado real estate]] company -- Automated Homefinder used Tomcat/JBoss for their production website for years, allowing millions of home buyers to search a robust database for [[http://www.automatedhomefinder.com/Denver-Northwest-Colorado-real-estate-for-sale.php|Denver real estate]], [[http://www.automatedhomefinder.com/Boulder-Colorado-real-estate-for-sale.php|Boulder real estate]], and other real estate listings around Colorado. @@ -114, +114 @@ [[http://www.cohomefinder.com|Colorado HomeFinder]] is the most popular real estate website in Colorado, delivering millions of page views each month through a custom high performance Tomcat/Struts solution that allows users to search and browse real estate listings in [[http://www.cohomefinder.com/Denver-listings.htm|Denver]], [[http://www.cohomefinder.com/Boulder-listings.htm|Boulder]], [[http://www.cohomefinder.com/Fort-Collins-listings.htm|Fort Collins]], and all across the Colorado front range. === Colorado Home Helper === - {{http://www.coloradohomehelper.com/images/LargeWebQuality.gif}} [[http://www.coloradohomehelper.com/|Colorado Home Helper]] is a Premier Colorado Real estate site run out of [[http://www.coloradohomehelper.com/boulder-homes.php|Boulder]] and [[http://www.coloradohomehelper.com/broomfield-homes.php|Broomfield]]. The site runs a complex property database and mapping system using Tomcat and other open source programs. + [[http://www.coloradohomehelper.com/|Colorado Home Helper]] is a Premier Colorado Real estate site run out of [[http://www.coloradohomehelper.com/boulder-homes.php|Boulder]] and [[http://www.coloradohomehelper.com/broomfield-homes.php|Broomfield]]. The site runs a complex property database and mapping system using Tomcat and other open source programs. === Common Clan Portal === {{http://www.cccp-project.org/images/cccp-logo.png}} The [[http://www.cccp-project.org|Common Clan Portal]] uses Tomcat, and has a [[http://www.cccp-project.org/Clan-Portal-JSP/tomcat.html|configuration guide]] as well. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove missing logos for CC Portal, Compiere, DSpace, Energized Hosting, F.W.Davison, General Motors Mexico, Gridsphere. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=229&rev2=230 -- [[http://www.coloradohomehelper.com/|Colorado Home Helper]] is a Premier Colorado Real estate site run out of [[http://www.coloradohomehelper.com/boulder-homes.php|Boulder]] and [[http://www.coloradohomehelper.com/broomfield-homes.php|Broomfield]]. The site runs a complex property database and mapping system using Tomcat and other open source programs. === Common Clan Portal === - {{http://www.cccp-project.org/images/cccp-logo.png}} The [[http://www.cccp-project.org|Common Clan Portal]] uses Tomcat, and has a [[http://www.cccp-project.org/Clan-Portal-JSP/tomcat.html|configuration guide]] as well. + The [[http://www.cccp-project.org|Common Clan Portal]] uses Tomcat, and has a [[http://www.cccp-project.org/Clan-Portal-JSP/tomcat.html|configuration guide]] as well. === Compiere === - {{http://www.compiere.org/images/logo_org120x60.gif}} [[http://www.compiere.org/technology/server.html|Compiere]] is an open-source Enterprise Resource Planning (ERP) software package. + [[http://www.compiere.org/technology/server.html|Compiere]] is an open-source Enterprise Resource Planning (ERP) software package. === Confluence === [[http://www.atlassian.com/software/confluence/|Confluence]] is the enterprise-grade wiki offering from [[http://www.atlassian.com|Atlassian]], the makers of the [[http://www.atlassian.com/software/jira/|JIRA]] issue tracking tool. They also have a page with their own [[http://confluence.atlassian.com/display/DOC/Tomcat+Tips|Tomcat tips]]. @@ -135, +135 @@ {{http://www.dreamshared.com/site/images/v2/logo_no_bg.png}} [[http://www.dreamshared.com/|DreamShared]] uses Tomcat to help people design and host unique, stylish, custom business websites and wedding websites. === DSpace === - {{http://dspace.org/img/green-white-gray.gif}} [[http://www.dspace.org/|DSpace]] is an open-source repository for research materials. It is installed in numerous places, including [[http://dspace.mit.edu|MIT]] and the [[http://www.iue.it/LIB/Cadmus/InstallationNotes.shtml|European University Institute]]. Detailed [[http://www.dspace.org/technology/system-docs/install.html|installation instructions]] are available. + [[http://www.dspace.org/|DSpace]] is an open-source repository for research materials. It is installed in numerous places, including [[http://dspace.mit.edu|MIT]] and the [[http://www.iue.it/LIB/Cadmus/InstallationNotes.shtml|European University Institute]]. Detailed [[http://www.dspace.org/technology/system-docs/install.html|installation instructions]] are available. === electricshopping.com === {{http://www.electricshopping.com/img/logo.gif}} [[http://www.electricshopping.com/shop/|electricshopping.com]] is a UK based internet retailer of home appliances and merchandise. Started in early 2001, it provides a low price guarantee along with free shipping in the UK and aims establish itself as the premier destination for electric home goods in Europe. It currently uses Tomcat for is online store. @@ -147, +147 @@ {{http://www.enbuenosaires.com/images/banner-en.png}} [[http://www.enbuenosaires.com/index-en.html|En Buenos Aires - Apartments / Real Estate]] - is a free property publications web site based in Buenos Aires Argentina, we're running Apache, Tomcat on Debian Linux doing around 120K visitors / month / 1.5 million page views / month and Tomcat is working very well, keep it up! === Energized Hosting === - {{http://www.energizedhosting.com/images/logo_3.gif}} [[http://www.energizedhosting.com|Energized Hosting]] uses Tomcat for its [[http://www.energizedhosting.com/hosting_jsp.html|Servlet/JSP hosting]] needs. + [[http://www.energizedhosting.com|Energized Hosting]] uses Tomcat for its [[http://www.energizedhosting.com/hosting_jsp.html|Servlet/JSP hosting]] needs. === Enhydra === {{http://www.enhydra.org/images/enhydra200_t200.gif}} [[http://www.enhydra.org/|Enhydra]] - Enhydra Server is a leading open source Java/XML application and webservice SOA server with an efficient "super-servlet" approach and is based on Tomcat. @@ -165, +165 @@ {{http://www.farmerguy.co.uk/images/logo.jpg}} [[http://www.farmerguy.co.uk|Farmer Guy Hams and Gammons]] - is a small web site offering home made hams and gammons for the christmas season, we only have a small jsp order form on tomcat but it works really well. Many thanks to the Tomcat team. === F.W.Davison === - {{http://www.fwdco.com/products/Fwd_logo_sm.gif}} [[http://www.fwdco.com|F.W.Davison & Co.]] - develops p
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Update Jasig references, remove missing logo. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=230&rev2=231 -- === JavaServletHosting.com === [[http://www.javaservlethosting.com|JavaServletHosting]] - a hosting company. - === Java Architectures Special Interest Group (JA-SIG) === + === Java Architectures Special Interest Group (JA-SIG), now Jasig === - {{http://www.ja-sig.org/images/jasig-head.gif}} [[http://www.ja-sig.org/|JA-SIG]] also has a [[https://clearinghouse.ja-sig.org/wiki/display/UPC/Production+Setup|configuration guide]]. + [[http://www.jasig.org/uportal|Jasig uPortal]], also has a [[http://www.ja-sig.org/wiki/display/UPC/Production+Setup|configuration guide]]. === JBoss === {{http://www.jboss.com/themes/jbosstheme/img/logo.gif}} [[http://www.jboss.com|JBoss]] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove Knowlex.org, because the domain name is taken by squatters. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=231&rev2=232 -- === KingHost === {{http://www.kinghost.com.br/img/logo_kinghost_painel.jpg}} [[http://www.kinghost.com.br/|KingHost - Hospedagem de Sites]] provides webhosting with JSP/Servlets support using Tomcat 5.0, 5.5 and 6.0. - - === KnowLEX === - {{http://www.knowlex.com/media/knowlex_logo.gif}} [[http://www.knowlex.org|KnowLEX DE]] - additional services to the contents of Wikipedia (German).[[http://www.knowlex.org|KnowLEX EN]] - additional services to the contents of Wikipedia (English). === KonaKart eCommerce / Shopping Cart Software === {{http://s168975732.websitehome.co.uk/images/konakart_logo.png}} [[http://www.konakart.com|KonaKart]] is a free java based online shopping cart application that provides everything that store owners need to sell their products over the Internet. It runs on Tomcat and includes a Java API and SOAP Web Service interface. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove missing logos for Sakai, SpikeSource. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=232&rev2=233 -- {{http://www.rescarta.org/rcweblogo.jpg}} [[http://www.rescarta.org|The ResCarta Foundation]] - Community Standards through Collaborative Efforts. === Sakai === - {{http://www.sakaiproject.org/images/stories/conferenceLogos/logoslate160x89.jpg}} [[http://www.sakaiproject.org|The Sakai Project]] - building a collaboration and learning environment for higher education. + [[http://www.sakaiproject.org|The Sakai Project]] - building a collaboration and learning environment for higher education. === service-repository.com === [[http://www.service-repository.com/|Service-Repository]] - Registry of public SOAP Web Services and dynamic client UI @@ -317, +317 @@ [[http://www.sparus-software.com|{{http://www.sparus-software.com/style/images/a_logosparusint.gif|http://www.sparus-software.com}}]] [[http://www.sparus-software.com/Device-Management/Products/EveryWAN-Mobility-Manager,42/The-Next-Generation-Solution-for.html|EveryWAN Mobility Manager, Windows Mobile device management and security solution]], includes Tomcat. === SpikeSource === - {{http://www.spikesource.com/images/spikesource2/SpikeSource_logo.gif}} [[http://www.spikesource.com/sitemgr/developer.php?nav=allComponentsd|The SpikeSource Core Stack]] includes Tomcat. + [[http://www.spikesource.com/sitemgr/developer.php?nav=allComponentsd|The SpikeSource Core Stack]] includes Tomcat. === Specto Design === {{http://www.spectodesign.com/images/work_logo.jpg}} [[http://www.spectodesign.com|Specto Design, Inc.]] delivers all [[http://www.spectodesign.com|ecommerce solutions]] and financial applications on Tomcat. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove Shopformat. The link redirects to Google sites login page.. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=233&rev2=234 -- === service-repository.com === [[http://www.service-repository.com/|Service-Repository]] - Registry of public SOAP Web Services and dynamic client UI - - === Shopformat === - {{http://www.shopformat.com/images/logos/logo.png}} [[http://www.shopformat.com|Shopformat eCommerce]] - Flexible hosted eCommerce solutions for retailers and web designers. === Sparus Software === [[http://www.sparus-software.com|{{http://www.sparus-software.com/style/images/a_logosparusint.gif|http://www.sparus-software.com}}]] [[http://www.sparus-software.com/Device-Management/Products/EveryWAN-Mobility-Manager,42/The-Next-Generation-Solution-for.html|EveryWAN Mobility Manager, Windows Mobile device management and security solution]], includes Tomcat. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Update SpringSource ERS download link, that was broken in rev.225. I should note that as of now the referenced page is nearly empty.. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=234&rev2=235 -- {{http://www.spectodesign.com/images/work_logo.jpg}} [[http://www.spectodesign.com|Specto Design, Inc.]] delivers all [[http://www.spectodesign.com|ecommerce solutions]] and financial applications on Tomcat. === SpringSource === - [[http://www.springsource.com|{{http://www.springframework.org/sites/all/themes/zen/framework/logo.png|http://www.springsource.com}}]] [[http://www.springsource.com/|SpringSource]] Enterprise Ready Server™ (ERS) is the most comprehensive and widely distributed solution for Apache Web and Tomcat Application Server management. ERS provides better performance and security and improves service quality, reliability and scalability by uniquely enhancing Apache and Tomcat for enterprise use while reducing the costs and complexity of sophisticated Web infrastructures. Includes multiple versions of Apache Tomcat. To downloadhttp://www.springsource.com/products/ers/apachedownloads + [[http://www.springsource.com|{{http://www.springframework.org/sites/all/themes/zen/framework/logo.png|http://www.springsource.com}}]] [[http://www.springsource.com/|SpringSource]] Enterprise Ready Server™ (ERS) is the most comprehensive and widely distributed solution for Apache Web and Tomcat Application Server management. ERS provides better performance and security and improves service quality, reliability and scalability by uniquely enhancing Apache and Tomcat for enterprise use while reducing the costs and complexity of sophisticated Web infrastructures. Includes multiple versions of Apache Tomcat. To download go to [[http://www.springsource.com/products/ers/apachedownloads|this page]]. === Starhost === {{http://www.starhost.com.br/imagens/estrutura/logo_starhost.jpg}} [[http://www.starhost.com.br/|Starhost - Hospedagem de Sites]] Brazilian webhost provides JSP/Servlets support using Tomcat 5.0, 5.5 and 6.0. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Remove missing logos for Trentisa, XWiki, Opticalhost. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=235&rev2=236 -- {{http://www.thasa.co.za/images/logo_travprobroker.jpg}} Thasa Technologies', [[http://www.thasa.co.za/products.htm|TravPro]], a web booking client for tour operators runs on Tomcat. === Trentisa === - {{http://www.trentisa.com/imagenes/cabeceras/trentisaLogo.png}} [[http://www.trentisa.com/|Trentisa]] - a leading consultant and software company specialized in IBM and JAVA solutions. + [[http://www.trentisa.com/|Trentisa]] - a leading consultant and software company specialized in IBM and JAVA solutions. === Hosting Planet Limited === {{http://www.planet-hosting.net/design/site/jhosting/image/logo.gif}} http://www.planet-hosting.net Hosting Planet Limited is hosting company offering Java hosting using private JVM. All hosting plans including Tomcat as JSP/Servlet container. @@ -365, +365 @@ {{http://documents.wolfram.com/common/images2003/btn_wolfram.gif}} [[http://www.wolfram.com|Wolfram Research]], makers of [[http://www.wolfram.com/products/mathematica/index.html|Mathematica]], recommend using Tomcat for webMathematica, and have a [[http://documents.wolfram.com/webmathematica/v2/index_2_1.html|configuration guide]] available. === XWiki === - {{http://www.xwiki.org/xwiki/skins/default/logo.gif}} [[http://www.xwiki.org/xwiki/bin/view/Main/WebHome|XWiki]] is an open-source Java wiki system. + [[http://www.xwiki.org/xwiki/bin/view/Main/WebHome|XWiki]] is an open-source Java wiki system. === WasHeilt === [[http://www.washeilt.de|WasHeilt]] platform for experiences with alternative medicine (German) === Opticalhost === - {{http://opticalhost.com.br/imagens/topo2/canto01_topo.gif}} [[http://www.opticalhost.com.br/|Opticalhost - Soluçoes para o seu site]] provides webhosting with JSP/Servlets support using Tomcat. + [[http://www.opticalhost.com.br/|Opticalhost - Soluçoes para o seu site]] provides webhosting with JSP/Servlets support using Tomcat. === Razuna === {{http://s.razuna.com/razuna_logo-200.png}} [[http://razuna.org/|Razuna]] is the Open Source alternative to Digital Asset Management. The standalone server download comes bundled with Tomcat 6.x, also their Virtual Server Image comes preinstalled with Tomcat 6.x. Their [[http://razuna.com|Razuna Hosted Platform]] offering, a hosted Digital Asset Management solution, runs on Tomcat as well. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Move some sites from secrion 3 (surveys) to secion 2 (sites). Remove missing logo for Volagratis.it. Arrange alphabetically.. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=236&rev2=237 -- == Other Known Sites / Systems / Applications == This section contains cases added by users without further external information, or found on the [[http://tomcat.apache.org/lists.html|Tomcat mailing lists]]. + === AccesStream === + {{http://www.accesstream.com/templates/accesstream/images/accesstream_header_logo.gif}} [[http://www.accesstream.com|AccesStream]] is an open-source Identity and Access Management suite. + + === Agile Edge === + [[http://www.agileedge.com|Agility Bug Tracker]] from The Agile Edge. + + === Airsoft PX === + {{http://www.airsoftpx.com/sites/default/files/tnt_sharpsales_6_logo.jpg}} [[http://www.airsoftpx.com|Airsoft PX]] is an e-commerce site that sells [[http://www.airsoftpx.com/store/airsoft-guns|airsoft guns]] such as the [[http://www.airsoftpx.com/store/airsoft-guns/aeg-automatic-electric-guns/classic-army-m15a4-tactical-carbine|Classic Army m15a4 carbine]]. + + === Alfresco === + {{http://www.alfresco.com/assets/images/header/alfresco-logo.gif}} [[http://www.alfresco.org/download.html|Alfresco]] is an open-source enterprise content management system. + + === Astradyne Systems === + {{http://astradyne.co.uk/astradynelogo.png}} [[http://www.astradyne.co.uk/|Astradyne Systems]] - A front for a crime family? ;) + + === AstroGrid === + [[http://wiki.astrogrid.org/bin/view/Astrogrid/WebHome|The AstroGrid]] project uses Tomcat for its web applications, as documented on their [[http://wiki.astrogrid.org/bin/view/AG2/WebAppManagement|wiki]]. + + === Automated HomeFinder === + {{http://www.automatedhomefinder.com/ahf_display/images/ahf_logo_mid.png}} [[http://www.automatedhomefinder.com|Colorado real estate]] company -- Automated Homefinder used Tomcat/JBoss for their production website for years, allowing millions of home buyers to search a robust database for [[http://www.automatedhomefinder.com/Denver-Northwest-Colorado-real-estate-for-sale.php|Denver real estate]], [[http://www.automatedhomefinder.com/Boulder-Colorado-real-estate-for-sale.php|Boulder real estate]], and other real estate listings around Colorado. + + === BASE === + The [[http://base.thep.lu.se/base2/index.html|BASE system]] runs on Tomcat. [[http://base.thep.lu.se/base2/installation.html|Installation instructions]] are also available. + + === Become.com === + {{http://www.become.com/images/become_home.gif}} [[http://Become.com|Become.com]] - The statistics servers for this massively-scaled shopping web crawler: [[http://java.sun.com/developer/technicalArticles/WebServices/become/|Read About It]] + + === björn hahnefeld IT TC_Framework === + {{http://www.hahnefeld.de/images/archive/small.jpg}} "björn hahnefeld IT TC_Framework" [[http://www.hahnefeld.de|björn hahnefeld IT]] runs on Tomcat. It is a Framework for the ATOSS employee portal with runs on Tomcat too. Hosting-Plans for the "björn hahnefeld IT TC_Framework" can be booked under [[http://www.hahnefeld.de/internet-services_server.html|TomCat Co-Location and Serverhousing]]. The "björn hahnefeld IT TC_Framework" for project and time control is live in action in three companies at the moment: [[http://www.schoen-alarm.at|Gerald Schön Elektro- & Sicherheitstechnik]], [[http://www.konstruktionsbuero-dos.de|Konstruktionsbüro DOS]] and [[http://www.brot-und-wein.eu|Enoteca "Brot & Wein"]]. + + === BlogScope.net === + [[http://www.blogscope.net/|{{http://www.blogscope.net/images/blogscope-white-logo.png|http://www.blogscope.net/}}]] [[http://www.blogscope.net/|BlogScope]] is a search and analysis tool for blogosphere. Developed as research project at U of Toronto, built upon many open source applications including Tomcat. [[http://www.blogscope.net/about/|Read more about it]]. + + === BreakBIT === + [[http://www.breakbit.com|BreakBIT]] Fairwizard - an integrated enterprise management system for Fair and Exhibitions. + + === Cactus === + {{http://jakarta.apache.org/cactus/images/logocactus.gif}} [[http://jakarta.apache.org/cactus|Jakarta Cactus]] - A test framework for unit testing server-side java code. + + === CampRate === + {{http://camprate.com/images/logo.gif}} [[http://CampRate.com|CampRate.com]] - Online Campground Directory and Reviews; Running Tomcat 5 and Struts. + + === CarGurus === + {{http://www.cargurus.com/gfx/logos/logo_final_small_r.gif}} [[http://www.cargurus.com|CarGurus.com]] - Next-generation automotive social network: where autmotive knowledge is shared! + + === Chambresdhotes.org === + {{http://www.chambresdhotes.org/links/static/lu
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Move web hosting companies into their own section. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=237&rev2=238 -- === Cardinal Health === {{http://www.cardinal.com/images/layout/cardinal_logo_small.gif}} [[http://www.cardinal.com/|CardinalHealth]] as documented by Sue Hildreth in [[http://www.awprofessional.com/articles/article.asp?p=100600&rl=1|this article]]. - === InnoShare === - {{http://webmail.innoshare.com/images/innoshare_logo_small.jpg}} [[http://www.innoshare.com/|InnoShare]] - a [[http://www.innoshare.com/services/atlanta-business-web-hosting|web hosting]] and [[http://www.innoshare.com/services/atlanta-email-newsletters|email marketing]] system for small businesses - === EMC / Documentum === EMC / Documentum's web-based frontend for content management ([[http://software.emc.com/products/software_az/webtop.htm|Webtop]]) runs in Apache Tomcat [[http://software.emc.com/products/software_az/tech_specs/general.htm|WebtopTechnicalSpecifications]]. Also, a primary Documentum developer website cites Tomcat as well [[http://www.dmdeveloper.com/articles/administration/methodServer.html|dm_developer]] @@ -74, +71 @@ === Become.com === {{http://www.become.com/images/become_home.gif}} [[http://Become.com|Become.com]] - The statistics servers for this massively-scaled shopping web crawler: [[http://java.sun.com/developer/technicalArticles/WebServices/become/|Read About It]] + === BlogScope.net === + [[http://www.blogscope.net/|{{http://www.blogscope.net/images/blogscope-white-logo.png|http://www.blogscope.net/}}]] [[http://www.blogscope.net/|BlogScope]] is a search and analysis tool for blogosphere. Developed as research project at U of Toronto, built upon many open source applications including Tomcat. [[http://www.blogscope.net/about/|Read more about it]]. + + === BreakBIT === + [[http://www.breakbit.com|BreakBIT]] Fairwizard - an integrated enterprise management system for Fair and Exhibitions. + + === Cactus === + {{http://jakarta.apache.org/cactus/images/logocactus.gif}} [[http://jakarta.apache.org/cactus|Jakarta Cactus]] - A test framework for unit testing server-side java code. + + === CampRate === + {{http://camprate.com/images/logo.gif}} [[http://CampRate.com|CampRate.com]] - Online Campground Directory and Reviews; Running Tomcat 5 and Struts. + + === CarGurus === + {{http://www.cargurus.com/gfx/logos/logo_final_small_r.gif}} [[http://www.cargurus.com|CarGurus.com]] - Next-generation automotive social network: where autmotive knowledge is shared! + + === Chambresdhotes.org === + {{http://www.chambresdhotes.org/links/static/luna/images/logo.jpg}} [[http://www.chambresdhotes.org/|Chambres D'Hotes .org]] - Chambres D'Hotes .org runs Tomcat for it's proprietary Online Reservations and Availabilities system. + + === ChineseBug === + {{http://chinesebug.com/external/chinesebug_full_286x75.gif}} [http://chinesebug.com] - Flashcard memorization tools designed specifically for learning Mandarin. + + === CiteSeerX === + {{http://citeseerx.ist.psu.edu/images/CSxbeta.jpg}} [[http://citeseerx.ist.psu.edu/|CiteSeerX]] - Scientific Literature Digital Library and Search Engine uses Tomcat among other Open Source tools. [[http://citeseerx.ist.psu.edu/about/site|Read more about CiteSeerX]] + + === Classifieds.pl === + {{http://www.classifieds.pl/static/images/ic_polzone.gif}} [[http://www.classifieds.pl|Polska Strefa - Ogłoszenia]] - Classified ads database. Running on Tomcat 5 and [[http://cocoon.apache.org|Apache Cocoon]] + + === CodeCollaborator === + {{http://smartbear.com/i/chrome/logo-190.gif}} [[http://smartbear.com/codecollab.php|CodeCollaborator]] is a popular peer code review tool from [[http://www.smartbear.com|Smart Bear Software]]. + + === Cofax === + {{http://www.cofax.org/content/static/cofax/logo2.gif}} [[http://www.cofax.org|Cofax]] - Content Object Factory + + === Colorado HomeFinder === + [[http://www.cohomefinder.com|Colorado HomeFinder]] is the most popular real estate website in Colorado, delivering millions of page views each month through a custom high performance Tomcat/Struts solution that allows users to search and browse real estate listings in [[http://www.cohomefinder.com/Denver-listings.htm|Denver]], [[http://www.cohomefinder.com/Boulder-listings.htm|Boulder]], [[http://www.cohomefinder.com/Fort-Collins-listings.htm|Fort Collins]], and all across the Colorado front range. + + === Colorado Home Helper === + [[http://www.coloradohomehelper.com/|Colorado Home Helper]] is a Premier Colorado Real estate site run out of [[http://www.coloradohomehelper.com/boulder-homes.php|Boulder]] and [[http://www.coloradohomehelper.com/broomfield-homes.php|B
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Restore those hosting providers links that I removed in revs. 226, 228.. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=238&rev2=239 -- === björn hahnefeld IT TC_Framework === {{http://www.hahnefeld.de/images/archive/small.jpg}} "björn hahnefeld IT TC_Framework" [[http://www.hahnefeld.de|björn hahnefeld IT]] runs on Tomcat. It is a Framework for the ATOSS employee portal with runs on Tomcat too. Hosting-Plans for the "björn hahnefeld IT TC_Framework" can be booked under [[http://www.hahnefeld.de/internet-services_server.html|TomCat Co-Location and Serverhousing]]. The "björn hahnefeld IT TC_Framework" for project and time control is live in action in three companies at the moment: [[http://www.schoen-alarm.at|Gerald Schön Elektro- & Sicherheitstechnik]], [[http://www.konstruktionsbuero-dos.de|Konstruktionsbüro DOS]] and [[http://www.brot-und-wein.eu|Enoteca "Brot & Wein"]]. + === Bodhost.com === + [[http://www.bodhost.com/|BODHost]] - Proud to be Apache Tomcat Hosting Provider + === DreamShared === {{http://www.dreamshared.com/site/images/v2/logo_no_bg.png}} [[http://www.dreamshared.com/|DreamShared]] uses Tomcat to help people design and host unique, stylish, custom business websites and wedding websites. @@ -370, +373 @@ === MyServletHosting === {{http://www.myservlethosting.com/images/logo1.gif}} [[http://www.myservlethosting.com/jsphosting.html|MyServletHosting.com]] - An application hosting provider + + === NetHosted === + {{http://www.nethosted.co.uk/img/nhlogo.png}} [[http://www.nethosted.co.uk|NetHosted Ltd]] Providers of high quality Tomcat hosting on our [[http://www.nethosted.co.uk/uk-vps-hosting.php|UK VPS hosting]] and [[http://www.nethosted.co.uk/uk-dedicated-servers.php|UK Dedicated Server]] solutions. === NEXCESS.NET === {{http://nexcess.net/banners/nexcess_468x60_1.gif}} [[http://www.nexcess.net|NEXCESS.NET]] is now supporting JSP/Servlets using Tomcat. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 7 [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |48222|New|Enh|2009-11-18|Source JARs empty in maven central| |48240|New|Nor|2009-11-19|Tomcat-Lite missing @Override markers | |48268|New|Nor|2009-11-23|Patch to fix generics in tomcat-lite | |48297|New|Nor|2009-11-28|webservices.ServiceRefFactory.initHandlerChain add| |48358|New|Enh|2009-12-09|JSP-unloading reloaded| |48392|New|Cri|2009-12-15|jdbc-pool is not returning the proxied connection | |48414|New|Nor|2009-12-19|Use of Class.forName may not work well in osgi env| |48550|New|Enh|2010-01-14|Update examples and default server.xml to use UTF-| |48551|New|Enh|2010-01-14|StringCache: Use entrySet() rather than keySet() +| +-+---+---+--+--+ | Total9 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Taglibs [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |27717|New|Maj|2004-03-16| very slow in JSTL 1.1 | |33934|New|Cri|2005-03-09|[standard] memory leak in jstl c:set tag | |38193|Ass|Enh|2006-01-09|[RDC] BuiltIn Grammar support for Field | |38600|Ass|Enh|2006-02-10|[RDC] Enable RDCs to be used in X+V markup (X+RDC)| |42413|New|Nor|2007-05-14|[PATCH] Log Taglib enhancements | |43640|New|Nor|2007-10-16|Move the tests package to JUnit | |45197|Ass|Nor|2008-06-12|Need to support the JSTL 1.2 specification| |46052|New|Nor|2008-10-21|SetLocaleSupport is slow to initialize when many l| |48333|New|Nor|2009-12-02|TLD generator | +-+---+---+--+--+ | Total9 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 6 [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |39661|Opn|Enh|2006-05-25|Please document JULI FileHandler configuration pro| |41128|Inf|Enh|2006-12-07|Reference to java Thread name from RequestProcesso| |41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat| |41791|New|Enh|2007-03-07|Tomcat behaves inconsistently concerning flush-pac| |41883|Ass|Enh|2007-03-18|use abstract wrapper instead of plain X509Certific| |41944|New|Enh|2007-03-25|Start running the RAT tool to see where we're miss| |41992|New|Enh|2007-03-30|Need ability to set OS process title | |42463|New|Enh|2007-05-20|"crossContext" and classloader issues - pls amend | |43001|New|Enh|2007-07-30|JspC lacks setMappedFile and setDie for use in Ant| |43003|New|Enh|2007-07-30|Separate dependent component download and build ta| |43400|New|Enh|2007-09-14|enum support for tag libs | |43497|New|Enh|2007-09-26|Add ability to escape rendered output of JSP expre| |43548|Opn|Enh|2007-10-04|xml schema for tomcat-users.xml | |43642|New|Enh|2007-10-17|Add prestartminSpareThreads attribute for Executor| |43682|New|Enh|2007-10-23|JULI: web-inf/classes/logging.properties to suppor| |43742|New|Enh|2007-10-30|.tag compiles performed one at a time -- extremel| |43790|Ass|Enh|2007-11-03|concurrent access issue on TagHandlerPool | |43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output | |44047|New|Enh|2007-12-10|Provide a way for Tomcat to serve up error pages w| |44106|New|Enh|2007-12-19|autodeploy configures directories which do not con| |44199|New|Enh|2008-01-10|expose current backlog queue size | |44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f| |44264|New|Enh|2008-01-18|Clustering - Support for disabling multicasting an| |44265|New|Enh|2008-01-18|Improve JspWriterImpl performance with "inline" su| |44284|New|Enh|2008-01-23|Support java.lang.Iterable in c:forEach tag | |44294|New|Enh|2008-01-25|Support for EL functions with varargs | |44299|New|Enh|2008-01-26|Provider manager app with a log out button| |44312|New|Enh|2008-01-28|Warn when overwritting docBase of the default Host| |44598|New|Enh|2008-03-13|JAASRealm is suppressing Exceptions | |44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam| |44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt| |44818|New|Enh|2008-04-13|tomcat hangs with GET when content-length is defin| |45014|New|Enh|2008-05-15|Request and Response classes should have wrappers | |45282|New|Enh|2008-06-25|NioReceiver doesn't close cleanly, leaving sockets| |45283|Opn|Enh|2008-06-25|Allow multiple authenticators to be added to pipel| |45428|New|Enh|2008-07-18|warn if the tomcat stop doesn't complete | |45654|New|Enh|2008-08-19|use static methods and attributes in a direct way!| |45731|New|Enh|2008-09-02|Enhancement request : pluggable httpsession cache | |45794|New|Enh|2008-09-12|Patch causes JNDIRealm to bind with user entered c| |45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks| |45871|New|Enh|2008-09-23|Support for salted and digested patches in DataSou| |45878|New|Enh|2008-09-24|Generated jars do not contain proper manifests or | |45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE| |45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output| |45995|New|Enh|2008-10-13|RFE - MIME type extension not case sensitive | |46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c| |46263|New|Enh|2008-11-21|Tomcat reloading of context does not update contex| |46264|New|Enh|2008-11-21|Shutting down tomcat with large number of contexts| |46284|New|Enh|2008-11-24|Add flag to DeltaManager that blocks processing cl| |46323|New|Enh|2008-12-02|NTLM Authentication for Microsoft Active Directory| |46350|New|Enh|2008-12-05|Maven repository should contain source bundles| |46451|
Bug report for Tomcat Connectors [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo| |35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName| |36155|Opn|Nor|2005-08-12|tomcat chooses wrong host if using mod_jk | |36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for requests in II| |38895|New|Nor|2006-03-08|Http headers with an underscore "_" change into hy| |39967|Inf|Nor|2006-07-05|mod_jk gives segmentation fault when apache is sta| |40208|Inf|Nor|2006-08-08|Request-Dump when ErrorDocument in httpd.conf is a| |41170|Inf|Nor|2006-12-13|single crlf in header termination crashes app.| |41923|Opn|Nor|2007-03-21|Tomcat doesnt recognized client abort | |42366|Inf|Nor|2007-05-09|Memory leak in newer mod_jk version when connectio| |42554|Opn|Nor|2007-05-31|mod_ssl + mod_jk with status_worker does not work | |43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn| |43968|New|Enh|2007-11-26|[patch] support ipv6 with mod_jk | |44290|New|Nor|2008-01-24|mod_jk/1.2.26: retry is not useful for an importan| |44349|New|Maj|2008-02-04|mod_jk/1.2.26 module does not read worker.status.s| |44379|New|Enh|2008-02-07|convert the output of strftime into UTF-8 | |44454|New|Nor|2008-02-19|busy count reported in mod_jk inflated, causes inc| |44571|New|Enh|2008-03-10|Limits busy per worker to a threshold | |45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff| |45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so| |45395|New|Min|2008-07-14|MsgAjp dump method does not dump packet when being| |46337|New|Nor|2008-12-04|real worker name is wrong | |46406|New|Enh|2008-12-16|Supporting relative paths in isapi_redirect.proper| |46503|New|Nor|2009-01-09|Garbage characters in cluster domain field| |46632|New|Nor|2009-01-29|mod_jk's sockets close prematurely when the server| |46676|New|Enh|2009-02-09|Configurable test request for Watchdog thread | |46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca| |47038|New|Enh|2009-04-15|USE_FLOCK_LK redefined compiler warning when using| |47327|New|Enh|2009-06-07|remote_user not logged in apache logfile | |47617|New|Enh|2009-07-31|include time spent doing ajp_get_endpoint() in err| |47678|New|Nor|2009-08-11|Unable to allocate shared memory when using isapi_| |47679|New|Nor|2009-08-11|Not all headers get passed to Tomcat server from i| |47692|New|Blk|2009-08-12|Can not compile mod_jk with apache2.0.63 and tomca| |47714|New|Cri|2009-08-20|Reponse mixed between users | |47750|New|Maj|2009-08-27|Loss of worker settings when changing via jkstatus| |47795|New|Maj|2009-09-07|service sticky_session not being set correctly wit| |47840|New|Min|2009-09-14|A broken worker name is written in the log file. | |48169|New|Nor|2009-11-10|two second delay for cgi scripts mixed with mod_jk| |48191|New|Maj|2009-11-13|Problem with mod_jk 1.2.28 - Can not render up the| |48223|New|Nor|2009-11-18|IIS Logs HTTP status code 200 instead of error cod| |48490|New|Nor|2010-01-05|Changing a node to stopped in uriworkermap.propert| |48501|New|Enh|2010-01-07|Log rotation for ISAPI Redirector | |48513|New|Enh|2010-01-09|IIS Quick setup instructions | +-+---+---+--+--+ | Total 43 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 5 [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |27122|Opn|Enh|2004-02-20|IE plugins cannot access components through Tomcat| |28039|Opn|Enh|2004-03-30|Cluster Support for SingleSignOn | |29494|Inf|Enh|2004-06-10|No way to set PATH when running as a service on Wi| |33262|Inf|Enh|2005-01-27|Service Manager autostart should check for adminis| |33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps| |33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na| |34801|New|Enh|2005-05-08|PATCH: CGIServlet does not terminate child after a| |34805|Ass|Enh|2005-05-08|warn about invalid security constraint url pattern| |34868|Ass|Enh|2005-05-11|allow to register a trust store for a session that| |35054|Inf|Enh|2005-05-25|warn if appBase is not existing as a File or direc| |36133|Inf|Enh|2005-08-10|Support JSS SSL implementation| |36362|New|Enh|2005-08-25|missing check for Java reserved keywords in tag fi| |36569|Inf|Enh|2005-09-09|Redirects produce illegal URL's | |36837|Inf|Enh|2005-09-28|Looking for ProxyHandler implementation of Http re| |36922|Inf|Enh|2005-10-04|setup.sh file mis-advertised and missing | |37018|Ass|Enh|2005-10-11|Document how to use tomcat-SSL with a pkcs11 token| |37334|Inf|Enh|2005-11-02|Realm digest property not aligned with the adminis| |37449|Opn|Enh|2005-11-10|Two UserDatabaseRealm break manager user | |37485|Inf|Enh|2005-11-14|I'd like to run init SQL after JDBC Connection cre| |37847|Ass|Enh|2005-12-09|Allow User To Optionally Specify Catalina Output F| |38216|Inf|Enh|2006-01-10|Extend Jmxproxy to allow call of MBean Operations | |38268|Inf|Enh|2006-01-13|User friendly: Need submit button on adding/deleti| |38360|Inf|Enh|2006-01-24|Domain for session cookies| |38546|Inf|Enh|2006-02-07|Google bot sends invalid If-Modifed-Since Header, | |38577|Inf|Enh|2006-02-08|Enhance logging of security failures | |38743|New|Min|2006-02-21|when using APR, JKS options are silently ignored | |38916|Inf|Enh|2006-03-10|HttpServletRequest cannot handle multipart request| |39053|Inf|Enh|2006-03-21|include Tomcat embedded sample| |39309|Opn|Enh|2006-04-14|tomcat can't compile big jsp, hitting a compiler l| |39740|New|Enh|2006-06-07|semi-colon ; isn't allowed as a query argument sep| |39862|Inf|Enh|2006-06-22|provide support for protocol-independent GenericSe| |40211|Inf|Enh|2006-08-08|Compiled JSP don't indent HTML code | |40218|New|Enh|2006-08-08|JNDI realm - recursive group/role matching| |40222|Inf|Enh|2006-08-09|Default Tomcat configuration alows easy session hi| |40402|New|Enh|2006-09-03|Manager should display Exceptions | |40510|New|Enh|2006-09-14|installer does not create shortcuts for all users | |40712|New|Enh|2006-10-10|Realm admin error.| |40728|Inf|Enh|2006-10-11|Catalina MBeans use non-serializable classes | |40766|New|Enh|2006-10-16|Using an unsecure jsessionid with mod_proxy_ajp ov| |40881|Opn|Enh|2006-11-02|Unable to receive message through TCP channel -> | |41007|Opn|Enh|2006-11-20|Can't define customized 503 error page| |41179|New|Enh|2006-12-15|400 Bad Request response during auto re-deployment| |41227|Opn|Enh|2006-12-21|When the jasper compiler fails to compile a JSP, i| |41337|Opn|Enh|2007-01-10|Display an error page if no cert is available on C| |41496|New|Enh|2007-01-30|set a security provider for jsse in a connector co| |41498|New|Enh|2007-01-30|allRolesMode Realm configuration option not docume| |41539|Inf|Enh|2007-02-05|NullPointerException during Embedded tomcat restar| |41673|New|Enh|2007-02-21|Jasper output the message of compiling error using| |41697|Ver|Enh|2007-02-25|make visible in debug output if charset from brows| |41709|Inf|Enh|2007-02-26|When calling the API that relates to the buffer af| |41718|New|Enh|2007-02-27|Status 302 response to GET request has no body whe| |42390|
Bug report for Tomcat Native [2010/01/17]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |38372|Inf|Cri|2006-01-25|tcnative-1.dll response overflow corruption, parti| |41361|New|Nor|2007-01-14|Content lost when read by a slow client. | |42090|New|Cri|2007-04-11|tcnative badly handles some OpenSSL disconnections| |45392|New|Nor|2008-07-14|No OCSP support for client SSL verification | |46041|New|Cri|2008-10-20|Tomcat service is terminated unexpectedly (tcnativ| |46179|New|Maj|2008-11-10|apr ssl client authentication | |46571|New|Nor|2009-01-21|tcnative blocks in APR poll on Solaris| |47319|New|Nor|2009-06-05|With APR, getRemoteHost() returns NULL for unknown| |47851|New|Nor|2009-09-16|thread-safety issues in the TC native Java code | |48253|New|Min|2009-11-20|Tomcat Native patch - adding dynamic locking callb| +-+---+---+--+--+ | Total 10 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Tomcat Wiki] Update of "PoweredBy" by KonstantinKolink o
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by KonstantinKolinko. The comment on this change is: Prevent some names from turning into wiki links by placing '!' before them. Move MyOtherDrive into section 2, as no story reference is provided.. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=239&rev2=240 -- === E*Trade === {{http://www.etrade.com/images/ET_Logo.gif}} [[http://www.etrade.com/|E*Trade]] - a financial services company, with a story from [[http://www.eweek.com/article2/0,1895,1916587,00.asp|eweek.com]] + === WalMart === + {{http://www.walmart.com/i/if/logo_always.gif}} [[http://www.walmart.com|WalMart.com]], as documented by Eugene Ciurana on [[http://www.theserverside.com/articles/article.tss?l=MigratingtoJava5|TheServerSide]]. + + === The Weather Channel === + {{http://image.weather.com/web/common/twc/logos/onair_137x102.gif}} [[http://www.weather.com|The Weather Channel]] - and a nice [[http://www.computerworld.com/developmenttopics/websitemgmt/story/0,10801,92583,00.html|article]] from Computer World on their shift from proprietary to open source. + + <> + + == Other Known Sites / Systems / Applications == + This section contains cases added by users without further external information, or found on the [[http://tomcat.apache.org/lists.html|Tomcat mailing lists]]. + + === AccesStream === + {{http://www.accesstream.com/templates/accesstream/images/accesstream_header_logo.gif}} [[http://www.accesstream.com|AccesStream]] is an open-source Identity and Access Management suite. + + === Agile Edge === + [[http://www.agileedge.com|Agility Bug Tracker]] from The Agile Edge. + + === Airsoft PX === + {{http://www.airsoftpx.com/sites/default/files/tnt_sharpsales_6_logo.jpg}} [[http://www.airsoftpx.com|Airsoft PX]] is an e-commerce site that sells [[http://www.airsoftpx.com/store/airsoft-guns|airsoft guns]] such as the [[http://www.airsoftpx.com/store/airsoft-guns/aeg-automatic-electric-guns/classic-army-m15a4-tactical-carbine|Classic Army m15a4 carbine]]. + + === Alfresco === + {{http://www.alfresco.com/assets/images/header/alfresco-logo.gif}} [[http://www.alfresco.org/download.html|Alfresco]] is an open-source enterprise content management system. + + === Astradyne Systems === + {{http://astradyne.co.uk/astradynelogo.png}} [[http://www.astradyne.co.uk/|Astradyne Systems]] - A front for a crime family? ;) + + === AstroGrid === + [[http://wiki.astrogrid.org/bin/view/Astrogrid/WebHome|The AstroGrid]] project uses Tomcat for its web applications, as documented on their [[http://wiki.astrogrid.org/bin/view/AG2/WebAppManagement|wiki]]. + + === Automated HomeFinder === + {{http://www.automatedhomefinder.com/ahf_display/images/ahf_logo_mid.png}} [[http://www.automatedhomefinder.com|Colorado real estate]] company -- Automated Homefinder used Tomcat/JBoss for their production website for years, allowing millions of home buyers to search a robust database for [[http://www.automatedhomefinder.com/Denver-Northwest-Colorado-real-estate-for-sale.php|Denver real estate]], [[http://www.automatedhomefinder.com/Boulder-Colorado-real-estate-for-sale.php|Boulder real estate]], and other real estate listings around Colorado. + + === BASE === + The [[http://base.thep.lu.se/base2/index.html|BASE system]] runs on Tomcat. [[http://base.thep.lu.se/base2/installation.html|Installation instructions]] are also available. + + === Become.com === + {{http://www.become.com/images/become_home.gif}} [[http://Become.com|Become.com]] - The statistics servers for this massively-scaled shopping web crawler: [[http://java.sun.com/developer/technicalArticles/WebServices/become/|Read About It]] + + === BlogScope.net === + [[http://www.blogscope.net/|{{http://www.blogscope.net/images/blogscope-white-logo.png|http://www.blogscope.net/}}]] [[http://www.blogscope.net/|BlogScope]] is a search and analysis tool for blogosphere. Developed as research project at U of Toronto, built upon many open source applications including Tomcat. [[http://www.blogscope.net/about/|Read more about it]]. + + === BreakBIT === + [[http://www.breakbit.com|BreakBIT]] Fairwizard - an integrated enterprise management system for Fair and Exhibitions. + + === Cactus === + {{http://jakarta.apache.org/cactus/images/logocactus.gif}} [[http://jakarta.apache.org/cactus|Jakarta Cactus]] - A test framework for unit testing server-side java code. + + === CampRate === + {{http://camprate.com/images/logo.gif}} [[http://CampRate.com|CampRate.com]] - Online Campground Directory and Reviews; Running Tomcat 5 and Struts. + + === CarGurus === + {{http://www.cargurus.com/gfx/logos/logo_final_small_r.gif}} [[http://www.cargurus.com|CarGurus.com]] - Next-generation automotive social network: where autmotive knowledge is shared! + + === Chambresdhotes.org ==
Re: Suggestion for handling LF/CRLF EOL conversions.
This is kind of old ground. :) For a Windows .BAT / .CMD file when checked out on Unix, LF is more pragmatic as an EOL marker (as you might want to edit the text, but are not going to execute the script). The same logic applies for a shell script checked out on Windows (where CR LF as EOL is useful). Turn this around. Text files are most useful checked out as text files - whatever the platform. (Went through this with CVS, Subversion, and Mercurial. The implementation varies, but you want pretty much the same end result, when working cross-platform.) On Sat, Jan 16, 2010 at 5:26 AM, sebb wrote: > Suggestion for handling LF/CRLF EOL conversions. > > Some files always need to have the same EOL, for example Windows .BAT > and .CMD files always need CRLF. AFAIK, shell scripts always need LF. > > For such files, set the appropriate svn:eol-style property, so > checkouts will always have the correct EOL. Yes, this may make > editting the files a bit awkward for some - tough. > > For files that need to vary between releases - for example README.txt > - you can use an Ant patternset to process them. You can even check > whether the target archive is for the same EOL-style as the host, and > skip conversion for such cases. > > Just a thought. >
DO NOT REPLY [Bug 48563] New: Dist build of trunk (Tomcat 7) fails because extras dir is missing
https://issues.apache.org/bugzilla/show_bug.cgi?id=48563 Summary: Dist build of trunk (Tomcat 7) fails because extras dir is missing Product: Tomcat 7 Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Packaging AssignedTo: dev@tomcat.apache.org ReportedBy: jason.britt...@gmail.com Created an attachment (id=24852) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24852) Patches dist.xml to first detect whether output/extras exists before trying to copy its content. Running: $ ant -f dist.xml in trunk fails right now with this output at the end: release: [copy] Copying 1 file to /home/jasonb/svn/tomcat-trunk/output/release/v7.0.0-dev [copy] Copying 1 file to /home/jasonb/svn/tomcat-trunk/output/release/v7.0.0-dev [copy] Copying 1 file to /home/jasonb/svn/tomcat-trunk/output/release/v7.0.0-dev [copy] Copying 1 file to /home/jasonb/svn/tomcat-trunk/output/release/v7.0.0-dev/bin [mkdir] Created dir: /home/jasonb/svn/tomcat-trunk/output/release/v7.0.0-dev/bin/extras BUILD FAILED /home/jasonb/svn/tomcat-trunk/dist.xml:384: /home/jasonb/svn/tomcat-trunk/output/extras not found. It fails this way when I build in this order: $ ant download $ ant $ ant -f dist.xml I've attached a patch that fixes the problem. Thanks. -- Jason -- 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 48563] Dist build of trunk (Tomcat 7) fails because extras dir is missing
https://issues.apache.org/bugzilla/show_bug.cgi?id=48563 --- Comment #1 from Konstantin Kolinko 2010-01-17 16:39:39 UTC --- Neither TC 7 nor TC 6 build will fail if you build it in this order: $ ant download $ ant $ ant -f extras.xml $ ant -f dist.xml release A release has to include extras, so I doubt that this deserves be fixed, but others may have a different opinion on this. At least we can add some "check-extras" target into the dependencies list of "release" one, so to fail earlier. -- 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 48563] Dist build of trunk (Tomcat 7) fails because extras dir is missing
https://issues.apache.org/bugzilla/show_bug.cgi?id=48563 --- Comment #2 from Jason Brittain 2010-01-17 18:52:56 UTC --- Whether extras are required to be built and distributed or not is subjective, I agree. Here are the reasons I thought building extras was optional: - The name "extras" makes it sound optional - The fact that it is a separate, additional command to build extras - Extras' build is split out into a separate Ant build file from that of the rest of Tomcat - Not everyone who is building their own Tomcat zip or tar.gz (ready to run) will need or wants the extras - The one thing that I could see that was preventing it from being optional was this single directory check (now fixed) -- 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
[Tomcat Wiki] Update of "PoweredBy" by webhostuk
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "PoweredBy" page has been changed by webhostuk. http://wiki.apache.org/tomcat/PoweredBy?action=diff&rev1=240&rev2=241 -- <> == Hosting providers == + + === Webhost.uk.net == + + {{http://www.webhost.uk.net/banners/webhost160_120.png}} "Best UK Web Hosting"[[http://www.webhost.net/|WebHostUK LTD]] - Proud to be Apache Tomcat Web Hosting provider in UK. === björn hahnefeld IT TC_Framework === {{http://www.hahnefeld.de/images/archive/small.jpg}} "björn hahnefeld IT TC_Framework" [[http://www.hahnefeld.de|björn hahnefeld IT]] runs on Tomcat. It is a Framework for the ATOSS employee portal with runs on Tomcat too. Hosting-Plans for the "björn hahnefeld IT TC_Framework" can be booked under [[http://www.hahnefeld.de/internet-services_server.html|TomCat Co-Location and Serverhousing]]. The "björn hahnefeld IT TC_Framework" for project and time control is live in action in three companies at the moment: [[http://www.schoen-alarm.at|Gerald Schön Elektro- & Sicherheitstechnik]], [[http://www.konstruktionsbuero-dos.de|Konstruktionsbüro DOS]] and [[http://www.brot-und-wein.eu|Enoteca "Brot & Wein"]]. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org