Re: Releasing tcnative 1.1.17
On 10/19/2009 06:42 PM, Mladen Turk wrote: Hi, Anyone volunteering for 1.1.17 RM? We have one nasty bug with OpenSSL/Windows that users are constantly complaining about, and since the patch is already in the SVN and confirmed to solve the issue I see no problem we push for a new release. If no one has the spare time, I'll tag and propose a VOTE in few days. Comments? +1 I will go for it in my afternoon if no one complains before :-) Cheers Jean-Frederic Regards - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Releasing tcnative 1.1.17
I could build binaries for OpenSuse 11.1, Suse SLES 10 and Snow Leopard if needed. 2009/10/20 jean-frederic clere > On 10/19/2009 06:42 PM, Mladen Turk wrote: > >> Hi, >> >> Anyone volunteering for 1.1.17 RM? >> We have one nasty bug with OpenSSL/Windows that >> users are constantly complaining about, and since >> the patch is already in the SVN and confirmed to >> solve the issue I see no problem we push for a >> new release. >> >> If no one has the spare time, I'll tag and propose >> a VOTE in few days. >> >> Comments? >> > > +1 I will go for it in my afternoon if no one complains before :-) > > Cheers > > Jean-Frederic > > >> Regards >> > > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > >
svn commit: r827446 - /tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java
Author: markt Date: Tue Oct 20 13:49:15 2009 New Revision: 827446 URL: http://svn.apache.org/viewvc?rev=827446&view=rev Log: Update example for updated Servlet 3.0 Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java?rev=827446&r1=827445&r2=827446&view=diff == --- tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java (original) +++ tomcat/trunk/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.java Tue Oct 20 13:49:15 2009 @@ -58,7 +58,7 @@ req.getAsyncContext().complete(); } else if (req.isAsyncSupported()) { AsyncContext actx = req.startAsync(); -req.addAsyncListener(this); +actx.addListener(this); resp.setContentType("text/plain"); clients.add(actx); if (this.clientcount.incrementAndGet()==1) { @@ -104,18 +104,25 @@ @Override public void onComplete(AsyncEvent event) throws IOException { -if (clients.remove(event.getRequest().getAsyncContext()) && clientcount.decrementAndGet()==0) { +if (clients.remove(event.getAsyncContext()) && clientcount.decrementAndGet()==0) { ticker.removeTickListener(this); } } @Override public void onError(AsyncEvent event) throws IOException { -event.getRequest().getAsyncContext().complete(); +event.getAsyncContext().complete(); } @Override public void onTimeout(AsyncEvent event) throws IOException { -event.getRequest().getAsyncContext().complete(); +event.getAsyncContext().complete(); +} + + + +@Override +public void onStartAsync(AsyncEvent event) throws IOException { +// NOOP } } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r827460 - in /tomcat/trunk/java/javax/servlet/resources: web-app_3_0.xsd web-common_3_0.xsd web-fragment_3_0.xsd
Author: markt Date: Tue Oct 20 14:00:44 2009 New Revision: 827460 URL: http://svn.apache.org/viewvc?rev=827460&view=rev Log: Update to the latest schemas. Note the stated election to use the CDDL Modified: tomcat/trunk/java/javax/servlet/resources/web-app_3_0.xsd tomcat/trunk/java/javax/servlet/resources/web-common_3_0.xsd tomcat/trunk/java/javax/servlet/resources/web-fragment_3_0.xsd Modified: tomcat/trunk/java/javax/servlet/resources/web-app_3_0.xsd URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/resources/web-app_3_0.xsd?rev=827460&r1=827459&r2=827460&view=diff == --- tomcat/trunk/java/javax/servlet/resources/web-app_3_0.xsd (original) +++ tomcat/trunk/java/javax/servlet/resources/web-app_3_0.xsd Tue Oct 20 14:00:44 2009 @@ -67,7 +67,7 @@ - + ]]> @@ -285,3 +285,4 @@ + Modified: tomcat/trunk/java/javax/servlet/resources/web-common_3_0.xsd URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/resources/web-common_3_0.xsd?rev=827460&r1=827459&r2=827460&view=diff == --- tomcat/trunk/java/javax/servlet/resources/web-common_3_0.xsd (original) +++ tomcat/trunk/java/javax/servlet/resources/web-common_3_0.xsd Tue Oct 20 14:00:44 2009 @@ -67,7 +67,7 @@ - + ]]> @@ -211,10 +211,10 @@ - + @@ -433,7 +433,9 @@ + type="javaee:fully-qualified-classType" + minOccurs="0" + maxOccurs="1"> @@ -768,7 +770,8 @@ - + @@ -1526,12 +1529,8 @@ -This element contains a sequence of "name" elements, each of which -refers to an application configuration resource by the "name" -declared on its web.xml fragment. This element can also contain -a single "others" element which specifies that this document comes -before or after other documents within the application. -See section 8.2.2 of the specification for details. +This element specifies configuration information related to the +handling of multipart/form-data requests. @@ -1539,20 +1538,54 @@ + maxOccurs="1"> + + + +The directory location where uploaded files will be stored + + + + + maxOccurs="1"> + + + +The maximum size limit of uploaded files + + + + + maxOccurs="1"> + + + +The maximum size limit of multipart/form-data requests + + + + + maxOccurs="1"> + + + +The size threshold after which an uploaded file will be +written to disk + + + + + Modified: tomcat/trunk/java/javax/servlet/resources/web-fragment_3_0.xsd URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/resources/web-fragment_3_0.xsd?rev=827460&r1=827459&r2=827460&view=diff == --- tomcat/trunk/java/javax/servlet/resources/web-fragment_3_0.xsd (original) +++ tomcat/trunk/java/javax/servlet/resources/web-fragment_3_0.xsd Tue Oct 20 14:00:44 2009 @@ -1,14 +1,16 @@ http://www.w3.org/2001/XMLSchema"; - targetNamespace="http://java.sun.com/xml/ns/javaee"; - xmlns:javaee="http://java.sun.com/xml/ns/javaee"; - xmlns:xsd="http://www.w3.org/2001/XMLSchema"; - elementFormDefault="qualified" - attributeFormDefault="unqualified" - version="3.0"> +targetNamespace="http://java.sun.com/xml/ns/javaee"; +xmlns:javaee="http://java.sun.com/xml/ns/javaee"; +xmlns:xsd="http://www.w3.org/2001/XMLSchema"; +elementFormDefault="qualified" +attributeFormDefault="unqualified" +version="3.0"> - @(#)web-fragment_3_0.xsds + + $Id$ + @@ -16,9 +18,9 @@ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - - Copyright 2003-2007 Sun Microsystems, Inc. All rights reserved. - + + Copyright 2003-2009 Sun Microsystems, Inc. All rights reserved. + The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the @@ -28,7 +30,7 @@ glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the
Re: tomcat is live but client can't request web
chetz wrote: > Hi, guys. I'm newbie. Btw, I want ask to you. I have installed tomcat in > linux ( opensuse). I also install postgresql there. PC which has been > installed, is connected to Internet. So client can access. > When I checked process of tomcat, it was live. But client could'nt request > /web which had been deployed there. So I restart tomcat. After Tomcat > restart, web can be accessed to client and run normally. This matter is > offten occurs. > > I 'll ask, what way which I do in order I don't restart tomcat again and > the matter can overcome ? > > I would glad if anyone can help me. So thanks a lot. Thsi is a question for the users list. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r827573 - /tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml
Author: jfclere Date: Tue Oct 20 14:39:39 2009 New Revision: 827573 URL: http://svn.apache.org/viewvc?rev=827573&view=rev Log: Add item in changelog. Modified: tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml Modified: tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml?rev=827573&r1=827572&r2=827573&view=diff == --- tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml (original) +++ tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml Tue Oct 20 14:39:39 2009 @@ -38,6 +38,9 @@ + + Arrange build after svn reorganisation (rjung) + 47852: Fix some Javadoc errors. Patch provided by Sebb. (rjung) - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r827579 - in /tomcat/native/branches/1.1.x: README.txt native/BUILDING
Author: jfclere Date: Tue Oct 20 14:44:07 2009 New Revision: 827579 URL: http://svn.apache.org/viewvc?rev=827579&view=rev Log: More doco stuff. Modified: tomcat/native/branches/1.1.x/README.txt tomcat/native/branches/1.1.x/native/BUILDING Modified: tomcat/native/branches/1.1.x/README.txt URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/README.txt?rev=827579&r1=827578&r2=827579&view=diff == --- tomcat/native/branches/1.1.x/README.txt (original) +++ tomcat/native/branches/1.1.x/README.txt Tue Oct 20 14:44:07 2009 @@ -19,7 +19,7 @@ Building ant -To build the native part see jni/native/BUILDING +To build the native part see native/BUILDING Running the examples Modified: tomcat/native/branches/1.1.x/native/BUILDING URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/BUILDING?rev=827579&r1=827578&r2=827579&view=diff == --- tomcat/native/branches/1.1.x/native/BUILDING (original) +++ tomcat/native/branches/1.1.x/native/BUILDING Tue Oct 20 14:44:07 2009 @@ -38,7 +38,7 @@ 2 - In bin/setenv.sh add the following: CATALINA_OPTS="$CATALINA_OPTS -Djava.library.path=tclib_location" In my machine I am using: -/home/jfclere/tomcat-connectors/jni/native/.libs for tclib_location +/home/jfclere/native/native/.libs for tclib_location NOTES: - configure --disable-openssl: Configure without ssl support. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r827704 - /tomcat/native/tags/TOMCAT_NATIVE_1_1_17/
Author: jfclere Date: Tue Oct 20 15:40:14 2009 New Revision: 827704 URL: http://svn.apache.org/viewvc?rev=827704&view=rev Log: Release 1.1.17 Soon. Added: tomcat/native/tags/TOMCAT_NATIVE_1_1_17/ (props changed) - copied from r827702, tomcat/native/branches/1.1.x/ Propchange: tomcat/native/tags/TOMCAT_NATIVE_1_1_17/ -- --- svn:ignore (added) +++ svn:ignore Tue Oct 20 15:40:14 2009 @@ -0,0 +1 @@ +dist Propchange: tomcat/native/tags/TOMCAT_NATIVE_1_1_17/ -- svn:mergeinfo = /tomcat/native/trunk:815411 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Releasing tcnative 1.1.17
j-f-c has through his social networking skills indicated he is working on it :) jean-frederic, are you? Filip On 10/19/2009 10:42 AM, Mladen Turk wrote: Hi, Anyone volunteering for 1.1.17 RM? We have one nasty bug with OpenSSL/Windows that users are constantly complaining about, and since the patch is already in the SVN and confirmed to solve the issue I see no problem we push for a new release. If no one has the spare time, I'll tag and propose a VOTE in few days. Comments? Regards - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Releasing tcnative 1.1.17
On 10/20/2009 05:57 PM, Filip Hanik - Dev Lists wrote: j-f-c has through his social networking skills indicated he is working on it :) jean-frederic, are you? Yep I have tagged, prepared tarball. So we will be able to vote on it soon. Cheers Jean-Frederic Filip On 10/19/2009 10:42 AM, Mladen Turk wrote: Hi, Anyone volunteering for 1.1.17 RM? We have one nasty bug with OpenSSL/Windows that users are constantly complaining about, and since the patch is already in the SVN and confirmed to solve the issue I see no problem we push for a new release. If no one has the spare time, I'll tag and propose a VOTE in few days. Comments? Regards - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE] Releasing Apache Tomcat Native 1.1.17
Hi, Native 1.1.17 is available for testing. If you want to take a look, the final source distribution can be downloaded from: http://tomcat.apache.org/dev/dist/tomcat-connectors/native/source/ Some binaries will be available at: http://tomcat.apache.org/dev/dist/tomcat-connectors/native/binaries/ So here's the vote. It will be closed in about 72 hours as usual. Apache Tomcat Native 1.1.17 is: [ ] Stable - no major issues, no regressions [ ] Beta - at least one significant issue -- tell us what it is [ ] Alpha - multiple significant issues -- tell us what they are Thank you, Jean-Frederic - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Releasing Apache Tomcat Native 1.1.17
Built on SnowLeopard (Java 1.6) total 2544 -rwxr-xr-x 1 henri staff 186048 20 oct 22:21 libtcnative-1.0.1.17.dylib drwxr-xr-x 3 henri staff 102 20 oct 22:21 libtcnative-1.0.1.17.dylib.dSYM lrwxr-xr-x 1 henri staff 26 20 oct 22:21 libtcnative-1.0.dylib -> libtcnative-1.0.1.17.dylib -rw-r--r-- 1 henri staff 1093680 20 oct 22:21 libtcnative-1.a lrwxr-xr-x 1 henri staff 26 20 oct 22:21 libtcnative-1.dylib -> libtcnative-1.0.1.17.dylib lrwxr-xr-x 1 henri staff 19 20 oct 22:21 libtcnative-1.la -> ../libtcnative-1.la -rw-r--r-- 1 henri staff 907 20 oct 22:21 libtcnative-1.lai More tests to be done 2009/10/20 jean-frederic clere : > Hi, > > Native 1.1.17 is available for testing. > > If you want to take a look, the final source distribution can be > downloaded from: > http://tomcat.apache.org/dev/dist/tomcat-connectors/native/source/ > > Some binaries will be available at: > http://tomcat.apache.org/dev/dist/tomcat-connectors/native/binaries/ > > So here's the vote. > It will be closed in about 72 hours as usual. > Apache Tomcat Native 1.1.17 is: > > > [ ] Stable - no major issues, no regressions > [ ] Beta - at least one significant issue -- tell us what it is > [ ] Alpha - multiple significant issues -- tell us what they are > > > Thank you, > > Jean-Frederic > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org