Can JULI file handler can be configured with other application servers?
Is JULI file handler is designed to work with other application servers or it is can be configured only with tomcat? If it is possible to configure with other app servers how it can be initialized to log per web-app generically? -- View this message in context: http://www.nabble.com/Can-JULI-file-handler-can-be-configured-with-other-application-servers--tp20478712p20478712.html Sent from the Tomcat - Dev mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Tomcat connection pool - needs to reset autocommit
On connection.close() - the pool should ensure that autocommit is reset correctly. Example test case: // assume autocommit for JDBC verndor is true Connection con = datasource.getConnection(); System.out.println("con.autoconnect=" + con.getAutoCommit()\n"; // above line should say true con.setAutoCommit(false); con.close(); con = datasource.getConnection(); System.out.println("con.autoconnect=" + con.getAutoCommit()\n"; // above line will return false instead of true con.close(); -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
[RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16
Mladen Turk wrote: > Hello to the Tomcat team, > > Native 1.1.16 has been available for testing for almost a week, > so I would like to proceed with the release vote. > So far only one binding vote has been recorded (Thanks Henri), and mine by presumption. So, Native 1.1.16 won't be released due to lack of developers interest :( Regards -- ^(TM) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16
Sad :( 2008/11/13 Mladen Turk <[EMAIL PROTECTED]>: > Mladen Turk wrote: >> Hello to the Tomcat team, >> >> Native 1.1.16 has been available for testing for almost a week, >> so I would like to proceed with the release vote. >> > > So far only one binding vote has been recorded > (Thanks Henri), and mine by presumption. > > So, Native 1.1.16 won't be released due to lack of > developers interest :( > > > Regards > -- > ^(TM) > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Tomcat connection pool - needs to reset autocommit
Tim Funk wrote: On connection.close() - the pool should ensure that autocommit is reset correctly. Example test case: // assume autocommit for JDBC verndor is true that's an interesting assumption, while it probably stands with most drivers. there is a 'defaultAutoCommit' property you can use. Connection con = datasource.getConnection(); System.out.println("con.autoconnect=" + con.getAutoCommit()\n"; // above line should say true con.setAutoCommit(false); con.close(); con = datasource.getConnection(); System.out.println("con.autoconnect=" + con.getAutoCommit()\n"; // above line will return false instead of true con.close(); I will put this into the ConnectionState interceptor, to manage all the state. Filip -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16
Too bad :( I am just the new guy here and I only use tcn for my MINA APR transport extensions. As I couldn't build tomcat native on my windows box I was looking forward to the new release, even though the only problems I ever encountered (I don't use tcn extensively at the moment) were the typos in multicast.c and network.c, which I guess you would have fixed in 1.1.16. cheers, Lorenz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [ANNOUNCE] Beta candidate for Tomcat connection pool
What Component should be used in bugzilla? It might be nice to add a jdbc-pool Component. (And maybe a bayeux) -Tim Filip Hanik - Dev Lists wrote: The Apache Tomcat team announces the immediate availability of Apache Tomcat JDBC Connection Pool Apache Tomcat Connectors version 1.0.1-beta is a new module within the Tomcat development realm, aimed to provide a high performance, concurrent and extensible connection pool to the Tomcat community. The pool, can of course also be used independently. Assorted set of binaries are available for testing at: http://tomcat.apache.org/dev/dist/jdbc-pool/v1.0.1-beta/ If you find any bugs while using this test release, please fill in the Bugzilla Bug Report or send an e-mail to Tomcat Developers List. When entering bug use the following link: https://issues.apache.org/bugzilla/query.cgi?product=Tomcat%206 The contribution was started with https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 46201] New: jdbc-pool : con.close() should no-op if already closed
https://issues.apache.org/bugzilla/show_bug.cgi?id=46201 Summary: jdbc-pool : con.close() should no-op if already closed Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] Connection con = datasource.getConnection(); con.close(); con.close(); The javadcos for close say: Calling the method close on a Connection object that is already closed is a no-op. The current behavior is "Caught: java.sql.SQLException: Connection has already been closed." -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 46200] New: jdbc-pool needs to close opened assets too
https://issues.apache.org/bugzilla/show_bug.cgi?id=46200 Summary: jdbc-pool needs to close opened assets too Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] Given the following psuedo code: for (i in 0..10) { Connection con = datasource.getConnection(); Statement st = con.createStatement(); ResultSet rs = null; for (j in 0..50) { st = con.createStatement(); rs = st.executeQuery("select '${i}.${j}' from dual"); } // notice the lack of closing the rs, and st con.close(); } This will blowup depending on your database vendor's config on how many open cursors can be open at a given time. Connection.close() implies that all Statements and PreparedStatements should also be closed too. Of course the above is subject to interpretation - but I've seen to many times int he wild Connections which are opened but its statements/result sets are not. -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [ANNOUNCE] Beta candidate for Tomcat connection pool
+1 to both Tim Funk wrote: What Component should be used in bugzilla? It might be nice to add a jdbc-pool Component. (And maybe a bayeux) -Tim Filip Hanik - Dev Lists wrote: The Apache Tomcat team announces the immediate availability of Apache Tomcat JDBC Connection Pool Apache Tomcat Connectors version 1.0.1-beta is a new module within the Tomcat development realm, aimed to provide a high performance, concurrent and extensible connection pool to the Tomcat community. The pool, can of course also be used independently. Assorted set of binaries are available for testing at: http://tomcat.apache.org/dev/dist/jdbc-pool/v1.0.1-beta/ If you find any bugs while using this test release, please fill in the Bugzilla Bug Report or send an e-mail to Tomcat Developers List. When entering bug use the following link: https://issues.apache.org/bugzilla/query.cgi?product=Tomcat%206 The contribution was started with https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r713763 - in /tomcat/trunk/modules/jdbc-pool: java/org/apache/tomcat/jdbc/pool/ java/org/apache/tomcat/jdbc/pool/interceptor/ test/org/apache/tomcat/jdbc/test/
Author: fhanik Date: Thu Nov 13 10:02:35 2008 New Revision: 713763 URL: http://svn.apache.org/viewvc?rev=713763&view=rev Log: Fix connection state, make it smarter and faster. Added: tomcat/trunk/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestConnectionState.java Modified: tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/JdbcInterceptor.java tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/interceptor/ConnectionState.java Modified: tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java?rev=713763&r1=713762&r2=713763&view=diff == --- tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java (original) +++ tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java Thu Nov 13 10:02:35 2008 @@ -129,6 +129,7 @@ (JdbcInterceptor) Class.forName(proxies[i], true, //should this be the class loader? Thread.currentThread().getContextClassLoader()).newInstance(); interceptor.setNext(handler); +interceptor.reset(this, con); //initialize handler = interceptor; }catch(Exception x) { SQLException sx = new SQLException("Unable to instantiate interceptor chain."); Modified: tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java?rev=713763&r1=713762&r2=713763&view=diff == --- tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java (original) +++ tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java Thu Nov 13 10:02:35 2008 @@ -172,13 +172,16 @@ return driver.getPool(getPoolProperties().getPoolName()).getSize(); } - public String toString() { +public String toString() { return super.toString()+"{"+getPoolProperties()+"}"; } /*---*/ // PROPERTIES WHEN NOT USED WITH FACTORY /**/ + + + public void setPoolProperties(PoolProperties poolProperties) { this.poolProperties = poolProperties; } @@ -200,7 +203,7 @@ } public void setMaxActive(int maxActive) { -this.poolProperties.setMaxIdle(maxActive); +this.poolProperties.setMaxActive(maxActive); } public void setMaxIdle(int maxIdle) { @@ -212,12 +215,11 @@ } public void setMinEvictableIdleTimeMillis(int minEvictableIdleTimeMillis) { -this.poolProperties.setMinEvictableIdleTimeMillis( -minEvictableIdleTimeMillis); + this.poolProperties.setMinEvictableIdleTimeMillis(minEvictableIdleTimeMillis); } public void setMinIdle(int minIdle) { -this.setMinIdle(minIdle); +this.poolProperties.setMinIdle(minIdle); } public void setNumTestsPerEvictionRun(int numTestsPerEvictionRun) { @@ -253,10 +255,8 @@ this.poolProperties.setTestWhileIdle(testWhileIdle); } -public void setTimeBetweenEvictionRunsMillis(int - timeBetweenEvictionRunsMillis) { -this.poolProperties.setTimeBetweenEvictionRunsMillis( -timeBetweenEvictionRunsMillis); +public void setTimeBetweenEvictionRunsMillis(int timeBetweenEvictionRunsMillis) { + this.poolProperties.setTimeBetweenEvictionRunsMillis(timeBetweenEvictionRunsMillis); } public void setUrl(String url) { @@ -283,26 +283,38 @@ public void setJmxEnabled(boolean enabled) { this.getPoolProperties().setJmxEnabled(enabled); } - + public void setFairQueue(boolean fairQueue) { this.getPoolProperties().setFairQueue(fairQueue); } +public void setDefaultCatalog(String catalog) { +this.getPoolProperties().setDefaultCatalog(catalog); +} + +public void setDefaultAutoCommit(Boolean autocommit) { +this.getPoolProperties().setDefaultAutoCommit(autocommit); +} + +public void setDefaultTransactionIsolation(int defaultTransactionIsolation) { + this.getPoolProperties().setDefaultTransactionIsolation(defaultTransactionIsola
DO NOT REPLY [Bug 46201] jdbc-pool : con.close() should no-op if already closed
https://issues.apache.org/bugzilla/show_bug.cgi?id=46201 Filip Hanik <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Filip Hanik <[EMAIL PROTECTED]> 2008-11-13 10:09:18 PST --- By default, the connection pool is stateless, it doesn't keep track of any connection state. This is for performance purposes to avoid roundtrips to the DB. There is an interceptor, called ConnectionState, http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/interceptor/ConnectionState.java?view=log that can keep track of state, and this one is also optimized to save roundtrips to the database. so if autocommit hasn't changed, To configure the interceptor, one can look at http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestConnectionState.java?view=log for an example on how to use the connection state this bug was fixed in http://svn.apache.org/viewvc?view=rev&revision=713763 -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r713787 - /tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java
Author: fhanik Date: Thu Nov 13 10:59:24 2008 New Revision: 713787 URL: http://svn.apache.org/viewvc?rev=713787&view=rev Log: fix for calling close multiple times Modified: tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java Modified: tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java?rev=713787&r1=713786&r2=713787&view=diff == --- tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java (original) +++ tomcat/trunk/modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/ProxyConnection.java Thu Nov 13 10:59:24 2008 @@ -71,8 +71,8 @@ if (ISCLOSED_VAL==method.getName()) { return isClosed(); } -if (isClosed()) throw new SQLException("Connection has already been closed."); if (CLOSE_VAL==method.getName()) { +if (isClosed()) return null; //noop for already closed. PooledConnection poolc = this.connection; this.connection = null; pool.returnConnection(poolc); @@ -80,6 +80,7 @@ } else if (TOSTRING_VAL==method.getName()) { return this.toString(); } +if (isClosed()) throw new SQLException("Connection has already been closed."); return method.invoke(connection.getConnection(),args); } - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 46201] jdbc-pool : con.close() should no-op if already closed
https://issues.apache.org/bugzilla/show_bug.cgi?id=46201 --- Comment #2 from Filip Hanik <[EMAIL PROTECTED]> 2008-11-13 11:00:07 PST --- well, that was embarrassing, pasted in the wrong fix to the bug, here is the fix for this bug http://svn.apache.org/viewvc?view=rev&revision=713787 -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16
Mladen Turk schrieb: > Mladen Turk wrote: >> Hello to the Tomcat team, >> >> Native 1.1.16 has been available for testing for almost a week, >> so I would like to proceed with the release vote. >> > > So far only one binding vote has been recorded > (Thanks Henri), and mine by presumption. > > So, Native 1.1.16 won't be released due to lack of > developers interest :( If you are able to accept a late vote, I'll test later today ... Rainer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [ANNOUNCE] Beta candidate for Tomcat connection pool
There are products, components, and versions. The versions are related to products and not components. Putting pool and bayeux as components under TC6 makes them a part of TC 6. I thought they are separate modules, because their lifecycle and release cycles are not 1:1 with Tomcat. So since versions relate to products, it seems to be better to use products Tomcat JDBC Pool Tomcat Bayeux or Tomcat Module JDBC Pool Tomcat Module Bayeux etc. Don't know if that would be an abuse of the "product" notion, because then each new module would become a new Tomcat Product. Does anyone know, how commons did it in Bugzilla, before they moved to JIRA (same situation: lots of individually released and versioned small things)? Regards, Rainer Filip Hanik - Dev Lists schrieb: > +1 to both > > Tim Funk wrote: >> What Component should be used in bugzilla? It might be nice to add a >> jdbc-pool Component. (And maybe a bayeux) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r713869 - in /tomcat/trunk/modules/jdbc-pool: build.xml doc/changelog.xml doc/jdbc-pool.xml
Author: fhanik Date: Thu Nov 13 15:54:31 2008 New Revision: 713869 URL: http://svn.apache.org/viewvc?rev=713869&view=rev Log: Add a change log to the module Added: tomcat/trunk/modules/jdbc-pool/doc/changelog.xml Modified: tomcat/trunk/modules/jdbc-pool/build.xml tomcat/trunk/modules/jdbc-pool/doc/jdbc-pool.xml Modified: tomcat/trunk/modules/jdbc-pool/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/build.xml?rev=713869&r1=713868&r2=713869&view=diff == --- tomcat/trunk/modules/jdbc-pool/build.xml (original) +++ tomcat/trunk/modules/jdbc-pool/build.xml Thu Nov 13 15:54:31 2008 @@ -33,9 +33,9 @@ - + - + @@ -159,6 +159,7 @@ + Added: tomcat/trunk/modules/jdbc-pool/doc/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/doc/changelog.xml?rev=713869&view=auto == --- tomcat/trunk/modules/jdbc-pool/doc/changelog.xml (added) +++ tomcat/trunk/modules/jdbc-pool/doc/changelog.xml Thu Nov 13 15:54:31 2008 @@ -0,0 +1,40 @@ + + + +]> + + + &project; + + +Filip Hanik +Changelog + + + + + + + 713763Improve connection state handling + 713763Improve connection state handling + + + + + Modified: tomcat/trunk/modules/jdbc-pool/doc/jdbc-pool.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/doc/jdbc-pool.xml?rev=713869&r1=713868&r2=713869&view=diff == --- tomcat/trunk/modules/jdbc-pool/doc/jdbc-pool.xml (original) +++ tomcat/trunk/modules/jdbc-pool/doc/jdbc-pool.xml Thu Nov 13 15:54:31 2008 @@ -18,7 +18,7 @@ ]> - + &project; - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [VOTE] Releasing Apache Tomcat Native 1.1.16
Mladen Turk schrieb: > Apache Tomcat Native 1.1.16 is: > > [X] 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 Additional remarks (I'm going to help with those changes to, but I wanted to first take the time to get them written down): - Top-Level directory contains files NOTICE *and* NOTICE.txt, which are identical except one empty line. - README.txt: a little short; all paths beginning with examples/ miss a leading jni/ - CHANGELOG.txt: Looks a little strange, because e.g. it only contains version numbers 1_1.11 and 1_1.12. So either there were no changes for other versions, or the numbers got lost? - ant build: - maybe we should rename build.properties.sample to build.properties.default and have it as additional property source in build.xml (like we do for Tomcat itself). So the properties in the file get used, except when you overwrite them via build.properties. We might also put a correct version and version.number into build.properties.default before tagging - target compile-only doesn't work (variable build.home undefined) but seems to be not needed, since target compile gets used instead - target compile-examples seems also not to get used, there is another one "examples", which does the same plus more - ant -p doesn't list all relevant targets - version.number is a little strange, because it is 100 (three digits), not clear what it should be set to for 1.1.16. Fortunately it is never used :) - native build - os/win32/libtcnative.rc: TCN_VERISON -> TCN_VERSION (3 times) - file srclib/VERSIONS: what's the reason for this file? Nothing else is in srclib - configure: platorm -> platform - build-in tests: all of them need a little doc - Echo: I propose to use another port, e.g. 2223 instead of 23. Users shouldn't build and test as root, so we shouldn't use a privileged port by default - SSL: Needs a little info about the missing certificates, or maybe we should include test certificates in the test folder LocalServer: test results: - locals-example: starts to accept on the unix socket, but then no more progress - server-example: misses ssl certificates, after adding them I'm not sure, how the test result should look like - Tomcat: works fine, applied some load via ab, runs stable Regards, Rainer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r713887 - /tomcat/trunk/modules/jdbc-pool/sign.sh
Author: fhanik Date: Thu Nov 13 16:44:19 2008 New Revision: 713887 URL: http://svn.apache.org/viewvc?rev=713887&view=rev Log: Added helper script to sign releases Added: tomcat/trunk/modules/jdbc-pool/sign.sh (with props) Added: tomcat/trunk/modules/jdbc-pool/sign.sh URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/sign.sh?rev=713887&view=auto == --- tomcat/trunk/modules/jdbc-pool/sign.sh (added) +++ tomcat/trunk/modules/jdbc-pool/sign.sh Thu Nov 13 16:44:19 2008 @@ -0,0 +1,5 @@ +VERSION=v1.0.2-beta +for i in $(find output/release/$VERSION -name "*.zip" -o -name "*.tar.gz"); do + echo Signing $i + echo $1|gpg --passphrase-fd 0 -a -b $i +done Propchange: tomcat/trunk/modules/jdbc-pool/sign.sh -- svn:executable = * - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r713889 - /tomcat/trunk/modules/jdbc-pool/build.xml
Author: fhanik Date: Thu Nov 13 16:55:59 2008 New Revision: 713889 URL: http://svn.apache.org/viewvc?rev=713889&view=rev Log: increment build number and control it from build file at this point Modified: tomcat/trunk/modules/jdbc-pool/build.xml Modified: tomcat/trunk/modules/jdbc-pool/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/build.xml?rev=713889&r1=713888&r2=713889&view=diff == --- tomcat/trunk/modules/jdbc-pool/build.xml (original) +++ tomcat/trunk/modules/jdbc-pool/build.xml Thu Nov 13 16:55:59 2008 @@ -21,6 +21,11 @@ + + + + + @@ -31,12 +36,6 @@ - - - - - - - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16
Hi Mladen, last weeks are conference time... Sorry are also test tcnative today. regards Peter Am 13.11.2008 um 20:47 schrieb Rainer Jung: Mladen Turk schrieb: Mladen Turk wrote: Hello to the Tomcat team, Native 1.1.16 has been available for testing for almost a week, so I would like to proceed with the release vote. So far only one binding vote has been recorded (Thanks Henri), and mine by presumption. So, Native 1.1.16 won't be released due to lack of developers interest :( If you are able to accept a late vote, I'll test later today ... Rainer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]