Re: Tomcat for 8.0.next

2014-08-25 Thread Konstantin Kolinko
2014-08-12 17:08 GMT+04:00 Konstantin Kolinko knst.koli...@gmail.com:
 2014-08-12 16:59 GMT+04:00 Rémy Maucherat r...@apache.org:
 2014-08-12 14:42 GMT+02:00 Mark Thomas ma...@apache.org:

 I may still tag if we see some failures (e.g. in NIO2)
 but I'll look at the on a case by case basis.

 From what I understand, any problem would be a regression, which means it
 would be a good plan to investigate before tagging.
 Other than that, +1

 Gump shows repeatable failures with NIO2 for many days (I think that
 started since OS update on vmgump).


 [junit] Test org.apache.catalina.nonblocking.TestNonBlockingAPI FAILED

 Testsuite: org.apache.catalina.nonblocking.TestNonBlockingAPI
 Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 27.534 sec
 - Standard Error -
 (a lot of lines - omitting...)
 -  ---

 Testcase: testBug55438NonBlockingReadWriteEmptyRead took 2 sec
 Testcase: testNonBlockingRead took 2.172 sec
 Testcase: testNonBlockingWriteError took 14.015 sec
 FAILED
 Error listener should have been invoked.
 junit.framework.AssertionFailedError: Error listener should have been invoked.
 at 
 org.apache.catalina.nonblocking.TestNonBlockingAPI.testNonBlockingWriteError(TestNonBlockingAPI.java:347)

 Testcase: testNonBlockingReadIgnoreIsReady took 1.661 sec
 Testcase: testNonBlockingWrite took 7.672 sec


For a record,  tests with APR connector on Gump are failing in
TestNonBlockingAPI
in exactly the same way. All other tests in whole testsuite complete
successfully.

()
Testcase: testNonBlockingWriteError took 10.732 sec
FAILED
Error listener should have been invoked.
junit.framework.AssertionFailedError: Error listener should have been invoked.
at 
org.apache.catalina.nonblocking.TestNonBlockingAPI.testNonBlockingWriteError(TestNonBlockingAPI.java:347)
(...)

http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-test-apr/gump_file/TEST-org.apache.catalina.nonblocking.TestNonBlockingAPI.APR.txt.html

Thanks to Remy's update to the test in r1617734, the NIO2 connector is
no longer failing there.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 56882] HTTP Status 503 - Servlet jsp is currently unavailable after Context reload

2014-08-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56882

--- Comment #4 from Konstantin Kolinko knst.koli...@gmail.com ---
(In reply to Konstantin Kolinko from comment #2)
  Actual:
  
  include.jsp gives:
  [[[
  In place evaluation of another JSP which gives you the current time:
  1408802860131
  by including the output of another JSP: :-) 
  ]]]
  The second sentence had to contain a timestamp value. It is missing.
 
 The second sentence is missing more than just the timestamp.
 The first part of it is missing as well.

 (...)
 
 I wonder why it silently skips the failed pages. I expected it to produce an
 exception after the first failed include and abort the response.
 

Apparently there is some design feature for included pages.
I do not plan to discuss it here. Just writing down the findings.

Ch.9.3 The Include Method (servlet-3_1-final.pdf), says
The target servlet of the include method has access to all aspects of the
request object, but its use of the response object is more limited. ... It
cannot set headers or call any method that affects the headers of the response,
with the exception of the HttpServletRequest.getSession() and
HttpServletRequest.getSession(boolean) methods.

Technically, processing of unavailable servlets here in done in
o.a.c.core.ApplicationDispatcher.invoke() as
1. Log a warning with wrapper.getLogger().warn(...)
2. hresponse.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE, ...)


The warning is not logged, because logger.getHandlers() returns an empty list
for all loggers in hierarchy chain. I do not know why that happens, but it
might be expected for a stopped web application. (The request was mapped to a
stopped ContextVersion due to this mapper bug).

The HttpServletResponse.sendError() call is ignored.
(o.a.c.connector.Response#sendError(...)).

-- 
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



[jira] [Commented] (MTOMCAT-221) Deploy fails if server requires client-auth

2014-08-25 Thread Elliott Bradshaw (JIRA)

[ 
https://issues.apache.org/jira/browse/MTOMCAT-221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14109060#comment-14109060
 ] 

Elliott Bradshaw commented on MTOMCAT-221:
--

I realize that this is a bit old, but I'm still experiencing the same issue.  
Can anybody comment on this or suggest a workaround?

Thanks!

 Deploy fails if server requires client-auth
 ---

 Key: MTOMCAT-221
 URL: https://issues.apache.org/jira/browse/MTOMCAT-221
 Project: Apache Tomcat Maven Plugin
  Issue Type: Bug
  Components: tomcat7
Affects Versions: 2.0, 2.1
 Environment: Ubuntu 12.04, OpenJDK1.6
Reporter: Chris Owens
Assignee: Olivier Lamy (*$^¨%`£)
  Labels: certificate, deploy, maven, ssl
 Fix For: backlog


 The tomcat7-maven-plugin fails to deploy to a server that requires client 
 authentication. Running with -Djavax.net.ssl.debug=all reveals that maven 
 never opens the keystore file. 
 Tried:  Maven 3.0.4 and 3.0.5, both as distributed and with the replacement 
 wagon-lightweight-http jar mentioned in WAGON-372.   Tried with versions 2.0 
 ad 2.1 of the tomcat7-maven-plugin.
 Very likely related: https://jira.codehaus.org/browse/WAGON-372



--
This message was sent by Atlassian JIRA
(v6.2#6252)

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1620326 - in /tomcat/trunk: java/org/apache/catalina/mapper/ test/org/apache/catalina/mapper/ webapps/docs/ webapps/examples/jsp/forward/ webapps/examples/jsp/include/

2014-08-25 Thread kkolinko
Author: kkolinko
Date: Mon Aug 25 13:47:56 2014
New Revision: 1620326

URL: http://svn.apache.org/r1620326
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=56882
Fix regression in processing of includes and forwards when Context have been 
reloaded.
Tomcat was responding with HTTP Status 503.

This includes test cases.
TestMapper:
Amend context mapper tests
- Check wrapper names
- Test mapper map() method used by include and forward mapping
- Add test for Context reload (BZ 56882)

TestMapperWebapps:
- Add test for Context reload (BZ 56882)

Modified:
tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java
tomcat/trunk/test/org/apache/catalina/mapper/TestMapper.java
tomcat/trunk/test/org/apache/catalina/mapper/TestMapperWebapps.java
tomcat/trunk/webapps/docs/changelog.xml
tomcat/trunk/webapps/examples/jsp/forward/one.jsp
tomcat/trunk/webapps/examples/jsp/forward/two.html
tomcat/trunk/webapps/examples/jsp/include/foo.jsp
tomcat/trunk/webapps/examples/jsp/include/include.jsp

Modified: tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java?rev=1620326r1=1620325r2=1620326view=diff
==
--- tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java (original)
+++ tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java Mon Aug 25 
13:47:56 2014
@@ -305,6 +305,7 @@ public final class Mapper {
 int pos = find(contextVersions, version);
 if (pos = 0  contextVersions[pos].name.equals(version)) 
{
 contextVersions[pos] = newContextVersion;
+contextObjectToContextVersionMap.put(context, 
newContextVersion);
 }
 }
 }

Modified: tomcat/trunk/test/org/apache/catalina/mapper/TestMapper.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/mapper/TestMapper.java?rev=1620326r1=1620325r2=1620326view=diff
==
--- tomcat/trunk/test/org/apache/catalina/mapper/TestMapper.java (original)
+++ tomcat/trunk/test/org/apache/catalina/mapper/TestMapper.java Mon Aug 25 
13:47:56 2014
@@ -23,6 +23,7 @@ import java.util.concurrent.atomic.Atomi
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotSame;
+import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertSame;
 import static org.junit.Assert.assertTrue;
 
@@ -103,6 +104,10 @@ public class TestMapper extends LoggingB
 mapper.addContextVersion(iowejoiejfoiew, host, /foo/bar,
 0, createContext(context2), welcomes, null, null);
 
+mapper.addWrappers(iowejoiejfoiew, /foo, 0, Arrays
+.asList(new WrapperMappingInfo[] {
+new WrapperMappingInfo(/,
+createWrapper(context1-defaultWrapper), 
false, false) }));
 mapper.addWrappers(iowejoiejfoiew, /foo/bar, 0, Arrays
 .asList(new WrapperMappingInfo[] {
 new WrapperMappingInfo(/fo/*,
@@ -301,11 +306,19 @@ public class TestMapper extends LoggingB
 assertEquals(0, mappedContext.versions[0].name);
 Host oldHost = mappedHost.object;
 Context oldContext = mappedContext.versions[0].object;
+assertEquals(context2, oldContext.getName());
+
+Context oldContext1 = mappedHost.contextList.contexts[contextPos - 
1].versions[0].object;
+assertEquals(context1, oldContext1.getName());
 
 mappingData.recycle();
 mapper.map(hostMB, uriMB, null, mappingData);
 assertEquals(blah7, mappingData.host.getName());
 assertEquals(context2, mappingData.context.getName());
+assertEquals(wrapper5, mappingData.wrapper.getName());
+mappingData.recycle();
+mapper.map(oldContext, uriMB, mappingData);
+assertEquals(wrapper5, mappingData.wrapper.getName());
 
 Context newContext = createContext(newContext);
 mapper.addContextVersion(
@@ -317,7 +330,7 @@ public class TestMapper extends LoggingB
 null,
 null,
 Arrays.asList(new WrapperMappingInfo[] { new 
WrapperMappingInfo(
-/, createWrapper(default), false, false) }));
+/, createWrapper(newContext-default), false, 
false) }));
 
 assertEquals(2, mappedContext.versions.length);
 assertEquals(0, mappedContext.versions[0].name);
@@ -325,6 +338,10 @@ public class TestMapper extends LoggingB
 mappingData.recycle();
 mapper.map(hostMB, uriMB, null, mappingData);
 assertEquals(newContext, mappingData.context.getName());
+assertEquals(newContext-default, mappingData.wrapper.getName());

[Bug 56882] HTTP Status 503 - Servlet jsp is currently unavailable after Context reload

2014-08-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56882

--- Comment #5 from Konstantin Kolinko knst.koli...@gmail.com ---
Fixed in trunk with r1620326 and will be in 8.0.12.

I will work on backporting the tests to Tomcat 7.

-- 
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



[Bug 53085] [perf] [concurrency] DefaultInstanceManager.annotationCache is not optimal for more threads

2014-08-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53085

--- Comment #5 from Manoj manoj...@fisglobal.com ---
Which tomcat build have this patch?

-- 
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



[Bug 53085] [perf] [concurrency] DefaultInstanceManager.annotationCache is not optimal for more threads

2014-08-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53085

--- Comment #6 from Christopher Schultz ch...@christopherschultz.net ---
(In reply to Manoj from comment #5)
 Which tomcat build have this patch?

Read the comments: the support class was added to the trunk back in 2012 and
presumably appears in all releases following that date.

That support class, however, is not actually being used in any released
version. If you want to enable it, you'll have to manually apply Konstantin's
patch to the Tomcat sources and build it yourself. (Fortunately, building
Tomcat has become staggeringly easy since Tomcat 7.0.x).

-- 
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



svn commit: r1620428 - in /tomcat/trunk/test: org/apache/tomcat/jdbc/ webapp-virtual-webapp/src/main/webapp/META-INF/

2014-08-25 Thread kkolinko
Author: kkolinko
Date: Mon Aug 25 20:44:54 2014
New Revision: 1620428

URL: http://svn.apache.org/r1620428
Log:
Delete empty directories. They are not tracked by Git.

Removed:
tomcat/trunk/test/org/apache/tomcat/jdbc/
tomcat/trunk/test/webapp-virtual-webapp/src/main/webapp/META-INF/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1620435 - in /tomcat/trunk/modules/tomcat-lite: java/org/apache/coyote/servlet/ java/org/apache/tomcat/addons/ java/org/apache/tomcat/integration/ java/org/apache/tomcat/lite/cli/ java/or

2014-08-25 Thread kkolinko
Author: kkolinko
Date: Mon Aug 25 20:56:05 2014
New Revision: 1620435

URL: http://svn.apache.org/r1620435
Log:
Delete empty directories. They are not tracked by Git.

Removed:
tomcat/trunk/modules/tomcat-lite/java/org/apache/coyote/servlet/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/addons/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/integration/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/lite/cli/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/lite/coyote/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/servlets/
tomcat/trunk/modules/tomcat-lite/java/org/apache/tomcat/util/
tomcat/trunk/modules/tomcat-lite/test/org/apache/tomcat/util/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1620452 - in /tomcat/tc7.0.x/trunk/test: org/apache/tomcat/jdbc/ webapp-3.0-virtual-webapp/src/main/webapp/META-INF/

2014-08-25 Thread kkolinko
Author: kkolinko
Date: Mon Aug 25 21:20:59 2014
New Revision: 1620452

URL: http://svn.apache.org/r1620452
Log:
Delete empty directories. They are not tracked by Git.

Removed:
tomcat/tc7.0.x/trunk/test/org/apache/tomcat/jdbc/

tomcat/tc7.0.x/trunk/test/webapp-3.0-virtual-webapp/src/main/webapp/META-INF/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1620462 - /tomcat/trunk/webapps/docs/changelog.xml

2014-08-25 Thread rjung
Author: rjung
Date: Mon Aug 25 21:39:19 2014
New Revision: 1620462

URL: http://svn.apache.org/r1620462
Log:
Add changelog for r1619056.

Modified:
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1620462r1=1620461r2=1620462view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Aug 25 21:39:19 2014
@@ -45,6 +45,15 @@
   issues to not pop up wrt. others).
 --
 section name=Tomcat 8.0.12 (markt)
+  subsection name=Catalina
+changelog
+  add
+Make the session id generator extensible by adding a 
+codeSessionIdGenerator/code interface, an abstract
+base class and a standard implementation. (rjung)
+  /add
+/changelog
+  /subsection
   subsection name=Coyote
 changelog
   fix



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump]: Project tomcat-trunk-validate (in module tomcat-trunk) failed

2014-08-25 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-trunk-validate has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 41 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-trunk-validate :  Tomcat 8.x, a web server implementing the Java 
Servlet 3.1,
...


Full details are available at:

http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-validate/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.jar.
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-validate/gump_work/build_tomcat-trunk_tomcat-trunk-validate.html
Work Name: build_tomcat-trunk_tomcat-trunk-validate (Type: Build)
Work ended in a state of : Failed
Elapsed: 23 secs
Command Line: /usr/lib/jvm/java-7-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dcheckstyle.jar=/srv/gump/public/workspace/checkstyle/target/checkstyle-5.8-SNAPSHOT.jar
 -Dexecute.validate=true validate 
[Working Directory: /srv/gump/public/workspace/tomcat-trunk]
CLASSPATH: 
/usr/lib/jvm/java-7-oracle/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-5.8-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-20140826.jar:/srv/gump/public/workspace/apache-commons/cli/target/commons-cli-1.3-SNAPSHOT.jar:/srv/gump/public/workspace/commons-collections-3.x/target/commons-collections-3.3-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/exec/target/comm
 
ons-exec-1.3-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-20140826.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20140826.jar:/srv/gump/public/workspace/apache-commons/validator/dist/commons-validator-20140826.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-19.0-SNAPSHOT.jar
-
Buildfile: /srv/gump/public/workspace/tomcat-trunk/build.xml

build-prepare:
   [delete] Deleting directory 
/srv/gump/public/workspace/tomcat-trunk/output/build/temp
[mkdir] Created dir: 
/srv/gump/public/workspace/tomcat-trunk/output/build/temp

compile-prepare:

download-validate:

testexist:
 [echo] Testing  for 
/srv/gump/public/workspace/checkstyle/target/checkstyle-5.8-SNAPSHOT.jar

setproxy:

downloadzip:

validate:
[mkdir] Created dir: 
/srv/gump/public/workspace/tomcat-trunk/output/res/checkstyle
[checkstyle] Running Checkstyle 5.8-SNAPSHOT on 2919 files
[checkstyle] 
/srv/gump/public/workspace/tomcat-trunk/webapps/docs/changelog.xml:51: Line 
matches the illegal pattern '\s+$'.

BUILD FAILED
/srv/gump/public/workspace/tomcat-trunk/build.xml:542: Got 1 errors and 0 
warnings.

Total time: 23 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-validate/rss.xml
- Atom: 
http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-validate/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2014082655, vmgump.apache.org:vmgump:2014082655
Gump E-mail Identifier (unique within run) #4.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump]: Project tomcat-tc7.0.x-test-nio (in module tomcat-7.0.x) failed

2014-08-25 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-test-nio has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 54 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-tc7.0.x-test-nio :  Tomcat 7.x, a web server implementing Java 
Servlet 3.0,
...


Full details are available at:

http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-nio/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp-src.jar.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
commons-daemon.native.src.tgz.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
tomcat-native.tar.gz.
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp.home.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/logs-NIO
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/test-tmp-NIO/logs



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-nio/gump_work/build_tomcat-7.0.x_tomcat-tc7.0.x-test-nio.html
Work Name: build_tomcat-7.0.x_tomcat-tc7.0.x-test-nio (Type: Build)
Work ended in a state of : Failed
Elapsed: 17 mins 31 secs
Command Line: /usr/lib/jvm/java-7-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.12-SNAPSHOT.jar 
-Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20140826-native-src.tar.gz
 -Dtest.reports=output/logs-NIO 
-Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20140826-native-src.tar.gz
 -Dexamples.sources.skip=true 
-Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps 
-Djdt.jar=/srv/gump/packages/eclipse/plugins/P20140317-1600/ecj-P20140317-1600.jar
 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20140826.jar
 
-Dtomcat-dbcp-src.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-src.jar
 -Dexecute.test.nio=true -Dtest.accesslog=true -Dcommons-pool.home=/srv/gump/pub
 lic/workspace/commons-pool-1.x 
-Dcommons-dbcp.home=/srv/gump/public/workspace/commons-dbcp-1.x 
-Dexecute.test.apr=false -Dexecute.test.bio=false 
-Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-20140826.jar
 -Dtest.temp=output/test-tmp-NIO 
-Dhamcrest.jar=/srv/gump/public/workspace/hamcrest/build/hamcrest-all-20140826.jar
 test 
[Working Directory: /srv/gump/public/workspace/tomcat-7.0.x]
CLASSPATH: 
/usr/lib/jvm/java-7-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-7.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/servlet-api.ja
 

[GUMP@vmgump]: Project tomcat-tc7.0.x-test-bio (in module tomcat-7.0.x) failed

2014-08-25 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-test-bio has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 54 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-tc7.0.x-test-bio :  Tomcat 7.x, a web server implementing Java 
Servlet 3.0,
...


Full details are available at:

http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-bio/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp-src.jar.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
commons-daemon.native.src.tgz.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
tomcat-native.tar.gz.
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp.home.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/logs-BIO
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/test-tmp-BIO/logs



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-bio/gump_work/build_tomcat-7.0.x_tomcat-tc7.0.x-test-bio.html
Work Name: build_tomcat-7.0.x_tomcat-tc7.0.x-test-bio (Type: Build)
Work ended in a state of : Failed
Elapsed: 16 mins 36 secs
Command Line: /usr/lib/jvm/java-7-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.12-SNAPSHOT.jar 
-Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20140826-native-src.tar.gz
 -Dtest.reports=output/logs-BIO 
-Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20140826-native-src.tar.gz
 -Dexamples.sources.skip=true 
-Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps 
-Djdt.jar=/srv/gump/packages/eclipse/plugins/P20140317-1600/ecj-P20140317-1600.jar
 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20140826.jar
 
-Dtomcat-dbcp-src.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-src.jar
 -Dexecute.test.nio=false -Dtest.accesslog=true -Dcommons-pool.home=/srv/gump/pu
 blic/workspace/commons-pool-1.x 
-Dcommons-dbcp.home=/srv/gump/public/workspace/commons-dbcp-1.x 
-Dexecute.test.apr=false -Dexecute.test.bio=true 
-Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-20140826.jar
 -Dtest.temp=output/test-tmp-BIO 
-Dhamcrest.jar=/srv/gump/public/workspace/hamcrest/build/hamcrest-all-20140826.jar
 test 
[Working Directory: /srv/gump/public/workspace/tomcat-7.0.x]
CLASSPATH: 
/usr/lib/jvm/java-7-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-7.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/servlet-api.ja