svn commit: r1336076 - in /tomcat/jk/trunk/native/common: jk_ajp_common.c jk_status.c

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 10:55:17 2012
New Revision: 1336076

URL: http://svn.apache.org/viewvc?rev=1336076&view=rev
Log:
make sure we force push if needed. Sequence will be set to a correct value 
(incremented) inside push.

Modified:
tomcat/jk/trunk/native/common/jk_ajp_common.c
tomcat/jk/trunk/native/common/jk_status.c

Modified: tomcat/jk/trunk/native/common/jk_ajp_common.c
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_ajp_common.c?rev=1336076&r1=1336075&r2=1336076&view=diff
==
--- tomcat/jk/trunk/native/common/jk_ajp_common.c (original)
+++ tomcat/jk/trunk/native/common/jk_ajp_common.c Wed May  9 10:55:17 2012
@@ -2704,7 +2704,7 @@ int ajp_validate(jk_worker_t *pThis,
p->name);
 }
 }
-p->s->addr_sequence = 1;
+p->s->addr_sequence = 0;
 p->s->last_maintain_time = time(NULL);
 p->s->last_reset = p->s->last_maintain_time;
 jk_ajp_push(p, JK_TRUE, l);

Modified: tomcat/jk/trunk/native/common/jk_status.c
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_status.c?rev=1336076&r1=1336075&r2=1336076&view=diff
==
--- tomcat/jk/trunk/native/common/jk_status.c (original)
+++ tomcat/jk/trunk/native/common/jk_status.c Wed May  9 10:55:17 2012
@@ -3188,7 +3188,7 @@ static void commit_worker(jk_ws_service_
 }
 }
 if (sync_needed == JK_TRUE) {
-lb->sequence++;
+lb->sequence = 0;
 jk_lb_push(lb, JK_TRUE, l);
 }
 }
@@ -3647,7 +3647,7 @@ static void commit_all_members(jk_ws_ser
 }
 }
 if (sync_needed == JK_TRUE) {
-wr->sequence++;
+wr->sequence = 0;
 if (!rc)
 rc = 3;
 }
@@ -3658,7 +3658,7 @@ static void commit_all_members(jk_ws_ser
 /* Recalculate the load multiplicators wrt. lb_factor */
 update_mult(lb, l);
 if (rc) {
-lb->sequence++;
+lb->sequence = 0;
 jk_lb_push(lb, JK_TRUE, l);
 }
 }
@@ -4162,8 +4162,8 @@ static int update_worker(jk_ws_service_t
 aw->addr_sequence++;
 }
 if (rv & (JK_STATUS_NEEDS_PUSH | JK_STATUS_NEEDS_ADDR_PUSH)) {
-wr->sequence++;
-lb->sequence++;
+wr->sequence = 0;
+lb->sequence = 0;
 jk_lb_push(lb, JK_TRUE, l);
 }
 if (rv & JK_STATUS_NEEDS_RESET_LB_VALUES)
@@ -4212,7 +4212,7 @@ static int update_worker(jk_ws_service_t
 aw->addr_sequence++;
 }
 if (rv & (JK_STATUS_NEEDS_PUSH | JK_STATUS_NEEDS_ADDR_PUSH)) {
-aw->sequence++;
+aw->sequence = 0;
 jk_ajp_push(aw, JK_TRUE, l);
 }
 if (rc == JK_FALSE) {



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



svn commit: r1336104 - /tomcat/jk/trunk/native/common/jk_lb_worker.c

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 11:32:43 2012
New Revision: 1336104

URL: http://svn.apache.org/viewvc?rev=1336104&view=rev
Log:
Use the same logic for subworkers; always increment the shared memory on push 
and then sync the local reference

Modified:
tomcat/jk/trunk/native/common/jk_lb_worker.c

Modified: tomcat/jk/trunk/native/common/jk_lb_worker.c
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_lb_worker.c?rev=1336104&r1=1336103&r2=1336104&view=diff
==
--- tomcat/jk/trunk/native/common/jk_lb_worker.c (original)
+++ tomcat/jk/trunk/native/common/jk_lb_worker.c Wed May  9 11:32:43 2012
@@ -375,7 +375,7 @@ void jk_lb_push(lb_worker_t *p, int lock
 
 for (i = 0; i < p->num_of_workers; i++) {
 lb_sub_worker_t *w = &p->lb_workers[i];
-if (w->sequence > w->s->h.sequence) {
+if (w->sequence != w->s->h.sequence) {
 jk_worker_t *jw = w->worker;
 ajp_worker_t *aw = (ajp_worker_t *)jw->worker_private;
 
@@ -392,14 +392,15 @@ void jk_lb_push(lb_worker_t *p, int lock
 w->s->activation = w->activation;
 w->s->lb_factor = w->lb_factor;
 w->s->lb_mult = w->lb_mult;
-w->s->h.sequence = w->sequence;
+w->s->h.sequence++;
+w->sequence = w->s->h.sequence;
 }
 }
 /* Increment the shared memory sequence number.
  * Our number can be behind the actual value in
  * shared memory.
  */
-++p->s->h.sequence;
+p->s->h.sequence++;
 p->sequence = p->s->h.sequence;
 if (locked == JK_FALSE)
 jk_shm_unlock();



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



svn commit: r1336170 - /tomcat/jk/trunk/native/configure.in

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 13:06:02 2012
New Revision: 1336170

URL: http://svn.apache.org/viewvc?rev=1336170&view=rev
Log:
No need for RM subst. It just breaks configure.status

Modified:
tomcat/jk/trunk/native/configure.in

Modified: tomcat/jk/trunk/native/configure.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/configure.in?rev=1336170&r1=1336169&r2=1336170&view=diff
==
--- tomcat/jk/trunk/native/configure.in (original)
+++ tomcat/jk/trunk/native/configure.in Wed May  9 13:06:02 2012
@@ -42,9 +42,6 @@ JK_CONFIG_NICE(config.nice)
 AC_PATH_PROG(TEST,test,$PATH)dnl
 AC_SUBST(TEST)
 
-AC_PATH_PROG(RM,rm,$PATH)dnl
-AC_SUBST(RM)
-
 AC_PATH_PROG(GREP,grep,$PATH)dnl
 AC_SUBST(GREP)
 



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



svn commit: r1336173 - in /tomcat/jk/trunk/native: apache-1.3/Makefile.apxs.in apache-1.3/Makefile.in apache-2.0/Makefile.apxs.in apache-2.0/Makefile.in common/Makefile.in

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 13:08:26 2012
New Revision: 1336173

URL: http://svn.apache.org/viewvc?rev=1336173&view=rev
Log:
Add distclean targets so that mater makefile's distclean works

Modified:
tomcat/jk/trunk/native/apache-1.3/Makefile.apxs.in
tomcat/jk/trunk/native/apache-1.3/Makefile.in
tomcat/jk/trunk/native/apache-2.0/Makefile.apxs.in
tomcat/jk/trunk/native/apache-2.0/Makefile.in
tomcat/jk/trunk/native/common/Makefile.in

Modified: tomcat/jk/trunk/native/apache-1.3/Makefile.apxs.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/apache-1.3/Makefile.apxs.in?rev=1336173&r1=1336172&r2=1336173&view=diff
==
--- tomcat/jk/trunk/native/apache-1.3/Makefile.apxs.in (original)
+++ tomcat/jk/trunk/native/apache-1.3/Makefile.apxs.in Wed May  9 13:08:26 2012
@@ -36,3 +36,5 @@ clean:
rm -rf .libs
 
 maintainer-clean: clean
+
+distclean: clean

Modified: tomcat/jk/trunk/native/apache-1.3/Makefile.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/apache-1.3/Makefile.in?rev=1336173&r1=1336172&r2=1336173&view=diff
==
--- tomcat/jk/trunk/native/apache-1.3/Makefile.in (original)
+++ tomcat/jk/trunk/native/apache-1.3/Makefile.in Wed May  9 13:08:26 2012
@@ -89,6 +89,8 @@ clean:
 
 maintainer-clean: clean
 
+distclean: clean
+
 #
 # Compile part.
 #

Modified: tomcat/jk/trunk/native/apache-2.0/Makefile.apxs.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/apache-2.0/Makefile.apxs.in?rev=1336173&r1=1336172&r2=1336173&view=diff
==
--- tomcat/jk/trunk/native/apache-2.0/Makefile.apxs.in (original)
+++ tomcat/jk/trunk/native/apache-2.0/Makefile.apxs.in Wed May  9 13:08:26 2012
@@ -39,3 +39,5 @@ clean:
rm -rf .libs
 
 maintainer-clean: clean
+
+distclean: clean

Modified: tomcat/jk/trunk/native/apache-2.0/Makefile.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/apache-2.0/Makefile.in?rev=1336173&r1=1336172&r2=1336173&view=diff
==
--- tomcat/jk/trunk/native/apache-2.0/Makefile.in (original)
+++ tomcat/jk/trunk/native/apache-2.0/Makefile.in Wed May  9 13:08:26 2012
@@ -93,3 +93,5 @@ clean:
rm -rf .libs
 
 maintainer-clean: clean
+
+distclean: clean

Modified: tomcat/jk/trunk/native/common/Makefile.in
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/Makefile.in?rev=1336173&r1=1336172&r2=1336173&view=diff
==
--- tomcat/jk/trunk/native/common/Makefile.in (original)
+++ tomcat/jk/trunk/native/common/Makefile.in Wed May  9 13:08:26 2012
@@ -46,3 +46,5 @@ clean:
rm -rf .libs
 
 maintainer-clean: clean
+
+distclean: clean



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



svn commit: r1336174 - in /tomcat/jk/trunk: native/common/jk_version.h native/iis/installer/isapi-redirector-win32-msi.ism tools/dist/README.html tools/dist/binaries/windows/README.html

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 13:09:48 2012
New Revision: 1336174

URL: http://svn.apache.org/viewvc?rev=1336174&view=rev
Log:
Bump versions a prepare for tag

Modified:
tomcat/jk/trunk/native/common/jk_version.h
tomcat/jk/trunk/native/iis/installer/isapi-redirector-win32-msi.ism
tomcat/jk/trunk/tools/dist/README.html
tomcat/jk/trunk/tools/dist/binaries/windows/README.html

Modified: tomcat/jk/trunk/native/common/jk_version.h
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_version.h?rev=1336174&r1=1336173&r2=1336174&view=diff
==
--- tomcat/jk/trunk/native/common/jk_version.h (original)
+++ tomcat/jk/trunk/native/common/jk_version.h Wed May  9 13:09:48 2012
@@ -29,7 +29,7 @@
 #define JK_VERFIX   36
 
 /* set JK_VERISRELEASE to 1 when release (do not forget to commit!) */
-#define JK_VERISRELEASE 0
+#define JK_VERISRELEASE 1
 /* Beta number */
 #define JK_VERBETA  0
 #define JK_BETASTRING   "0"

Modified: tomcat/jk/trunk/native/iis/installer/isapi-redirector-win32-msi.ism
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/iis/installer/isapi-redirector-win32-msi.ism?rev=1336174&r1=1336173&r2=1336174&view=diff
==
--- tomcat/jk/trunk/native/iis/installer/isapi-redirector-win32-msi.ism 
(original)
+++ tomcat/jk/trunk/native/iis/installer/isapi-redirector-win32-msi.ism Wed May 
 9 13:09:48 2012
@@ -3425,7 +3425,7 @@ TQBzAGkAAQBSAGUAbABlAGEAcwBlAA==
ProductIDnone
ProductLanguage1033
ProductNameTomcat Isapi 
Redirector
-   ProductVersion1.2.35
+   ProductVersion1.2.36
ProgressType0install
ProgressType1Installing
ProgressType2installed

Modified: tomcat/jk/trunk/tools/dist/README.html
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/dist/README.html?rev=1336174&r1=1336173&r2=1336174&view=diff
==
--- tomcat/jk/trunk/tools/dist/README.html (original)
+++ tomcat/jk/trunk/tools/dist/README.html Wed May  9 13:09:48 2012
@@ -47,13 +47,13 @@ nearest mirror site!
 
 
 % pgpk -a KEYS
-% pgpv tomcat-connectors-1.2.35-src.tar.gz.asc
+% pgpv tomcat-connectors-1.2.36-src.tar.gz.asc
 or,
 % pgp -ka KEYS
-% pgp tomcat-connectors-1.2.35-src.tar.gz.asc
+% pgp tomcat-connectors-1.2.36-src.tar.gz.asc
 or,
 % gpg --import KEYS
-% gpg --verify tomcat-connectors-1.2.35-src.tar.gz.asc
+% gpg --verify tomcat-connectors-1.2.36-src.tar.gz.asc
 
 
 We offer MD5 and SHA1 hashes as an alternative to validate the integrity

Modified: tomcat/jk/trunk/tools/dist/binaries/windows/README.html
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/dist/binaries/windows/README.html?rev=1336174&r1=1336173&r2=1336174&view=diff
==
--- tomcat/jk/trunk/tools/dist/binaries/windows/README.html (original)
+++ tomcat/jk/trunk/tools/dist/binaries/windows/README.html Wed May  9 13:09:48 
2012
@@ -35,7 +35,7 @@
connector to fail.
 
 
-The current stable release is 1.2.35
+The current stable release is 1.2.36
 
 See the Apache Tomcat Connectors
 http://tomcat.apache.org/connectors-doc/miscellaneous/changelog.html";>changelog



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



svn commit: r1336194 - /tomcat/jk/tags/JK_1_2_36/

2012-05-09 Thread mturk
Author: mturk
Date: Wed May  9 13:27:24 2012
New Revision: 1336194

URL: http://svn.apache.org/viewvc?rev=1336194&view=rev
Log:
Tag 1.2.36

Added:
tomcat/jk/tags/JK_1_2_36/
  - copied from r1336193, tomcat/jk/trunk/


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



[VOTE] Release Apache Tomcat Connectors 1.2.36

2012-05-09 Thread Mladen Turk

Hi,

Apache Tomcat Connectors 1.2.36 release candidate is ready
for vote at [1]. This version solves shared memorz regression(s)
found in released version 1.2.35 and allows )again= compiling
against old httpd 1.3.x.


The VOTE will remain open for at least 48 hours.

The Apache Tomcat Connectors 1.2.36 is
 [ ] Stable, go ahead and release
 [ ] Broken because of ...



 [1] http://people.apache.org/~mturk/tomcat-connectors/jk-1.2.36/


Regards
--
^TM

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



[Bug 53061] tomcat asynchronous invocation problem

2012-05-09 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53061

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Mark Thomas  ---
I extracted the key elements from this test case into my own test web
application as thay as quicker than downloading Maven, installing it and
figuring out how to use it.

The test worked for me on both Linux and Windows using the NIO connector.

If you still see this problem, feel free to re-open this issue but you will
need to provide a ready-to-run WAR that demonstrates the issue along with the
source for that WAR.

-- 
You are receiving this mail because:
You are the assignee for the bug.


[Bug 53062] Tomcat doesn't normalize absolute urls for redirect

2012-05-09 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53062

--- Comment #2 from Mark Thomas  ---
The specification says relative URLs must be translated to "fully qualified
URL". My understanding of that is that it means an absolute URL. The
specification says nothing about normalizing or not normalizing the URL.

Given that Tomcat has worked this way for so long, I am surprised there haven't
been more complaints given the statement that IE does not handle non-normalized
redirects.

I'm not against normalizing them in principle but I want to take a look at the
code to see what would be involved.

-- 
You are receiving this mail because:
You are the assignee for the bug.


[Bug 53062] Tomcat doesn't normalize absolute urls for redirect

2012-05-09 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53062

--- Comment #3 from Mark Thomas  ---
Hmm. Interesting. RFC2396 says /./ and /../ are only special in relative URLs.
It implies (but does not make explicitly clear) that /./ and /../ are to be
treated literally in absolute URLs. That certainly isn't what any web server I
am aware of does. They would get treated the same way they would in relative
URLs and be normalized.

There is certainly an argument, based on removing ambiguity, to normalize URLs
generated by sendRedirect and friends.

-- 
You are receiving this mail because:
You are the assignee for the bug.


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

2012-05-09 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 has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 7 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 :  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/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/build/logs



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test/gump_work/build_tomcat-7.0.x_tomcat-tc7.0.x-test.html
Work Name: build_tomcat-7.0.x_tomcat-tc7.0.x-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 22 mins 10 secs
Command Line: /usr/lib/jvm/java-6-openjdk/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/dist/junit-10052012.jar 
-Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-10052012-native-src.tar.gz
 
-Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-10052012-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/org.eclipse.jdt.core_3.4.2/jdtcore.jar
 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-10052012.jar
 
-Dtomcat-dbcp-src.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-src.jar
 -Dtest.accesslog=true 
-Dcommons-pool.home=/srv/gump/public/workspace/commons-pool-1.x 
-Dcommons-dbcp.home=/
 srv/gump/public/workspace/commons-dbcp-1.x 
-Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-10052012.jar
 test 
[Working Directory: /srv/gump/public/workspace/tomcat-7.0.x]
CLASSPATH: 
/usr/lib/jvm/java-6-openjdk/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-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.jar:/srv/gump/public/workspace/tomcat-7.0.x/outp
 
ut/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina-ha.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/tomcat-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/tomcat-util.jar:/srv/gump/packages/eclipse/plugins/org.eclipse.jdt.core_3.4.2/jdtcore.jar:/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-10052012.jar:/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-10052012.jar:/srv/gump/
 public/workspace/junit/dist/junit-10052012.jar
-
[junit] May 10, 2012 4:40:5

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

2012-05-09 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-test has an issue affecting its community integration.
This issue affects 1 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-trunk-test :  Tomcat 8.x, a web server implementing Java Servlet 
3.1,
...


Full details are available at:

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

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on tomcat-trunk-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-trunk-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-trunk/output/build/logs



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-trunk/tomcat-trunk-test/gump_work/build_tomcat-trunk_tomcat-trunk-test.html
Work Name: build_tomcat-trunk_tomcat-trunk-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 23 mins 4 secs
Command Line: /usr/lib/jvm/java-6-openjdk/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/dist/junit-10052012.jar 
-Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-10052012-native-src.tar.gz
 
-Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-10052012-native-src.tar.gz
 -Dexamples.sources.skip=true 
-Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps 
-Djdt.jar=/srv/gump/packages/eclipse/plugins/org.eclipse.jdt.core_3.4.2/jdtcore.jar
 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-10052012.jar
 
-Dtomcat-dbcp-src.jar=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-dbcp-src.jar
 -Dtest.accesslog=true 
-Dcommons-pool.home=/srv/gump/public/workspace/commons-pool-1.x 
-Dcommons-dbcp.home=/
 srv/gump/public/workspace/commons-dbcp-1.x 
-Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-dbcp-10052012.jar
 test 
[Working Directory: /srv/gump/public/workspace/tomcat-trunk]
CLASSPATH: 
/usr/lib/jvm/java-6-openjdk/lib/tools.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-trunk/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-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-trunk/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/servlet-api.jar:/srv/gump/public/workspace/tomcat-trunk/outp
 
ut/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-ha.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-jni.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-util.jar:/srv/gump/packages/javamail-1.4/mail.jar:/srv/gump/packages/javamail-1.4/lib/mailapi.jar:/srv/gump/packages/jaf-1.1ea/activation.jar:/srv/gump/packages/eclipse/plugins/org
 
.eclipse.jdt.core_3.4.2/jdtcore.jar:/srv/gump/public/workspace/tomcat-trunk/tomcat-deps/tomcat-dbcp-10052012.jar:/srv/gump/public/workspace/apache-commons/daemon/dist/commons-dae