DO NOT REPLY [Bug 32317] - Making mod_jk replication aware (Clustering Support)

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32317.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32317





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 09:35 ---
Rainer,

Could you please run unified diff ('diff -u')?
I can not use the patch otherwise.

Thanks.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32141] - memory leak in jk1.2 with tomcat-5.0.27,apache 1.3.31

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32141.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32141





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 09:44 ---
I can give you the snap-shot of my profiler. The snap-shot file must be opened 
by Optimizeit Profiler 6.0 Ent. edition, build 031104.

In case you cannot open the snp file, I can try to produce more screen shot or 
give you the test case for you to repeat the problem.

One more thing, my test case use exactly the same config files 
(apache/tomcat/jk) which are copied from my production machine. May be the 
problem can only be produced by my config file. My production have two tomcats 
on same machine, may be that is the cause.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Adding header action filters to Catalina connector

2004-12-06 Thread Mladen Turk
Hi All,
What would be the proper solution for the following problems:
1. Having server wide API for setting outgoing header.
There should be a callback that can call a registered method
for each registered header value.
2. Having server wide API for taking actions on the
particular registered input header value.
Could something like that be accomplished with the current
filters API or some extra core coding is required?
For example:
I wish to register a class that will when request with 'FOO=BAR'
header is received (either in or out) an action will be taken
with the 'BAR' and direction param.
The purpose for that would be:
1. Proxy(mod_jk) sends X_TOMCAT_QUERY=AVARAGE_PROC_TIME
   Tomcat's (X_TOMCAT_QUERY) handler will be called with
   AVERAGE_PROC_TIME param, gather stat and...
2. Tomcat out header filter for X_TOMCAT_QUERY
   will on respond insert header X_TOMCAT_QUERY_AVERAGE_PROC_TIME=107
Any ideas?
MT.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 32540] New: - mixed case produces two contexts

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32540.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32540

   Summary: mixed case produces two contexts
   Product: Tomcat 4
   Version: 4.1.30
  Platform: PC
OS/Version: Windows NT
Status: NEW
  Severity: normal
  Priority: P2
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I have a war file gtw.war, a context file gtw.xml and a server.xml with a 
host entry with unpackWARs=true. The gtw.xml contains ... Context
docBase=gtw.war path=/gtw  ... The manager application shows the context
but the war file is not unzipped.

If I change all gtw to GTW by changing case the application is unpacked
and only one context (/GTW) exists. Including renaming gtw.war to GTW.war.

If I use upper case for the war file GTW.war and lower case for the path I 
get two contexts inside the manager application, /gtw and /GTW.

Is this a bug or wanted behaviour?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11 Http11Protocol.java

2004-12-06 Thread remm
remm2004/12/06 05:59:28

  Modified:catalina/src/share/org/apache/catalina/connector
Connector.java
   http11/src/java/org/apache/coyote/http11 Http11Protocol.java
  Log:
  - Decouple usage of the scheme and secure attributes from enabling SSL.
  - I think this was the case sometime in the past, and IMO it could be useful 
if the SSL stuff is done outside of Tomcat (where the connector on
Tomcat would be a fake SSL connector).
  - Hopefully I'm not doing anything too stupid ...
  
  Revision  ChangesPath
  1.15  +1 -3  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/connector/Connector.java
  
  Index: Connector.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/connector/Connector.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- Connector.java13 Oct 2004 08:17:47 -  1.14
  +++ Connector.java6 Dec 2004 13:59:28 -   1.15
  @@ -708,7 +708,6 @@
   public void setScheme(String scheme) {
   
   this.scheme = scheme;
  -setProperty(scheme, scheme);
   
   }
   
  @@ -733,7 +732,6 @@
   public void setSecure(boolean secure) {
   
   this.secure = secure;
  -setProperty(secure, String.valueOf(secure));
   
   }
   
  
  
  
  1.61  +2 -0  
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Protocol.java
  
  Index: Http11Protocol.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Protocol.java,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- Http11Protocol.java   11 Nov 2004 14:54:20 -  1.60
  +++ Http11Protocol.java   6 Dec 2004 13:59:28 -   1.61
  @@ -351,6 +351,7 @@
   
   public void setSSLImplementation( String valueS) {
   sslImplementationName = valueS;
  +setSecure(true);
   setAttribute(sslImplementation, valueS);
   }
   
  @@ -507,6 +508,7 @@
   }
   
   public void setProtocol( String k ) {
  +setSecure(true);
   setAttribute(protocol, k);
   }
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: CGI servlet is not found after it gets initialized...

2004-12-06 Thread Mark Claassen
Does anyone know the answer to why this is?  Or, perhaps, the prevailing
opinion is that I am crazy.  

It took me a long time to figure out a theory that fit the facts of this
problem, and I didn't really believe what I came up with.  I don't really
know how the internals of Tomcat work and how the CGI servlet attaches to
other webapps, but I really can't understand why it works for the CGI
servlet (in org.apache) and not for my copy (int dsi.app).

Mark

 -Original Message-
 From: Mark Claassen [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, December 02, 2004 11:19 AM
 To: [EMAIL PROTECTED]
 Subject: CGI servlet is not found after it gets initialized...
 
 
 What I did:
   o I copied the code from 4.1.31 CGIServlet
   o Fixed some bugs in that code (that have been duly submitted to
 Bugzilla)  
   I added no class dependancies to do this.
   I change the package to dsi.app.tomcat
   o Copiled the file and put it in a jar file (right 
 where the servlets-cgi.jar is)
   o Restart Tomcat
   o Noticed that my servlet was getting initialized by 
 the customized
 cgi: init line below
   o Got tons of ClassNotFoundExceptions in the 
 localhost_log for every webapp
   o The almost exact same code in the servlets-cgi.jar 
 file works fine
   Instead of the ClassNotFoundExceptions I get:
   StandardWrapper[/JViewerDocs:cgi]: Loading 
 container servlet cgi
   o If I copy my servlet to the shared/lib directory it 
 works fine.
   (I did not bother to remove it from the 
 server/lib directory since I have some custom valves in
   the same jar file, so in this test the jar file 
 is in both
 places.)
 
 Is there a package naming check done by Tomcat that is more 
 restrictive than the VM check here?
 
 Thanks,
 Mark
 
 localhost_log with ClassNotFoundExceptions below
 
 
 2004-12-02 10:46:19 StandardManager[/manager]: Seeding random 
 number generator class java.security.SecureRandom 2004-12-02 
 10:46:19 StandardManager[/manager]: Seeding of random number 
 generator has been completed 2004-12-02 10:46:19 
 StandardWrapper[/manager:default]: Loading container servlet 
 default 2004-12-02 10:46:19 default: DefaultServlet.init:  
 input buffer size=2048, output buffer size=2048 2004-12-02 
 10:46:19 default: DefaultServlet.init:  welcome 
 file=index.html 2004-12-02 10:46:19 default: 
 DefaultServlet.init:  welcome file=index.htm 2004-12-02 
 10:46:19 default: DefaultServlet.init:  welcome 
 file=index.jsp 2004-12-02 10:46:19 cgi: init (mac): loglevel 
 set to 0 2004-12-02 10:46:19 HostConfig[localhost]: Deploying 
 configuration descriptor JNLPUpgradeServlet.xml 2004-12-02 
 10:46:21 HostConfig[localhost]: Deploying web application 
 archive OcieServlet.war
 
 
 
 2004-12-02 10:46:23 ContextConfig[/OcieServlet]: Added 
 certificates - request attribute Valve 2004-12-02 10:46:23 
 StandardManager[/OcieServlet]: Seeding random number 
 generator class java.security.SecureRandom 2004-12-02 
 10:46:23 StandardManager[/OcieServlet]: Seeding of random 
 number generator has been completed 2004-12-02 10:46:23 
 StandardWrapper[/OcieServlet:default]: Loading container 
 servlet default 2004-12-02 10:46:23 default: 
 DefaultServlet.init:  input buffer size=2048, output buffer 
 size=2048 2004-12-02 10:46:23 default: DefaultServlet.init:  
 welcome file=index.html 2004-12-02 10:46:23 default: 
 DefaultServlet.init:  welcome file=index.htm 2004-12-02 
 10:46:23 default: DefaultServlet.init:  welcome 
 file=index.jsp 2004-12-02 10:46:23 
 StandardWrapper[/OcieServlet:cgi]: Marking servlet cgi as 
 unavailable 2004-12-02 10:46:23 
 StandardContext[/OcieServlet]: Servlet /OcieServlet threw 
 load() exception
 javax.servlet.ServletException: Wrapper cannot find servlet 
 class dsi.app.tomcat.DCGIServlet or a class it depends on
 at 
 org.apache.catalina.core.StandardWrapper.loadServlet(StandardW
 rapper.java:89
 1)
 at
 org.apache.catalina.core.StandardWrapper.load(StandardWrapper.
 java:823)
 at
 org.apache.catalina.core.StandardContext.loadOnStartup(Standar
 dContext.java:
 3422)
 at
 org.apache.catalina.core.StandardContext.start(StandardContext
 .java:3623)
 at 
 org.apache.catalina.core.ContainerBase.addChildInternal(Contai
 nerBase.java:8
 21)
 at
 org.apache.catalina.core.ContainerBase.addChild(ContainerBase.
 java:807)
 at
 org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
 at 
 org.apache.catalina.core.StandardHostDeployer.install(Standard
 HostDeployer.j
 ava:307)
 ...
 - Root Cause -
 java.lang.ClassNotFoundException: dsi.app.tomcat.DCGIServlet
 at 
 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappC
 lassLoader.jav
 a:1443)
 at 
 org.apache.catalina.loader.WebappClassLoader.loadClass(WebappC
 lassLoader.jav
 a:1289)
 at 
 

RE: Annoyance in the deployer

2004-12-06 Thread Cox, Charlie
It is annoying. I have a remote share on the network that is only static
files and I had to convince someone to create a WEB-INF folder on that share
and give them a nearly-empty web.xml. I would prefer to not have to maintain
it.

Charlie

 -Original Message-
 From: Remy Maucherat [mailto:[EMAIL PROTECTED]
 Sent: Saturday, December 04, 2004 12:40 PM
 To: Tomcat Developers List
 Subject: Annoyance in the deployer
 
 Hi,
 
 Not something major, but there's that in the deployer:
 // Make sure there is an application configuration
directory
 // This is needed if the Context appBase is the same as
the
 // web server document root to make sure only web
 applications
 // are deployed and not directories for web space.
 File webInf = new File(dir, /WEB-INF);
 if (!webInf.exists() || !webInf.isDirectory() ||
 !webInf.canRead())
 continue;
 
 Is that really useful ? I ask because it prevents dropping a folder
 containing a bunch of files in webapps (without creating a stupid
 WEB-INF folder), which could be annoying.
 
 Rémy
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


TCK request

2004-12-06 Thread Shapira, Yoav

Hi,
Can someone with access please run the Servlet and JSP TCKs against
Tomcat 5.5.5?  I'd like to have a stability vote starting Thursday.
Thanks,

Yoav Shapira http://www.yoavshapira.com





This e-mail, including any attachments, is a confidential business 
communication, and may contain information that is confidential, proprietary 
and/or privileged.  This e-mail is intended only for the individual(s) to whom 
it is addressed, and may not be saved, copied, printed, disclosed or used by 
anyone else.  If you are not the(an) intended recipient, please immediately 
delete this e-mail from your computer system and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32505] - Deploy of a file url fails

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32505.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32505


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 17:01 ---
I thought I had marked this as fixed earlier. Odd.
The problem was that the context attribute was not handled properly if it was
present but empty (and since an empty path is the root of the filesystem, at
least on Windows ...). The patch is very simple.

  RCS file:
/home/cvs/jakarta-tomcat-catalina/webapps/manager/WEB-INF/classes/org/apache/catalina/manager/ManagerServlet.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- ManagerServlet.java   23 Sep 2004 07:03:27 -  1.22
  +++ ManagerServlet.java   3 Dec 2004 15:35:25 -   1.23
  @@ -737,6 +737,9 @@
   protected void deploy(PrintWriter writer, String config,
   String path, String war, boolean update) {
   
  +if (config != null  config.length() == 0) {
  +config = null;
  +}
   if (war != null  war.length() == 0) {
   war = null;
   }


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: TCK request

2004-12-06 Thread Remy Maucherat
Shapira, Yoav wrote:
Hi,
Can someone with access please run the Servlet and JSP TCKs against
Tomcat 5.5.5?  I'd like to have a stability vote starting Thursday.
I think you're going to hate me, but *32505* is a serious issue (which I 
misundurstood at first), so it needs at least one hotfix :(
AFAIK, the bug isn't a regression.

The change is very simple:
 diff -u -r1.22 -r1.23
 --- ManagerServlet.java	23 Sep 2004 07:03:27 -	1.22
 +++ ManagerServlet.java	3 Dec 2004 15:35:25 -	1.23
 @@ -737,6 +737,9 @@
  protected void deploy(PrintWriter writer, String config,
  String path, String war, boolean update) {
  
 +if (config != null  config.length() == 0) {
 +config = null;
 +}
  if (war != null  war.length() == 0) {
  war = null;
  }

Rémy
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Annoyance in the deployer

2004-12-06 Thread Remy Maucherat
Cox, Charlie wrote:
It is annoying. I have a remote share on the network that is only static
files and I had to convince someone to create a WEB-INF folder on that share
and give them a nearly-empty web.xml. I would prefer to not have to maintain
it.
I don't quite understand your setup, though. If you specify your context 
to some path using a context file, then you shouldn't need a web.xml. Is 
that what you are doing ?

I'm basing this on TC 5.5 (older TCs may or may not have different 
limitations, so please use this version for testing), and my goal is to 
improve the defaults if I can.

Rémy
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: TCK request

2004-12-06 Thread Shapira, Yoav

Hi,

Can someone with access please run the Servlet and JSP TCKs against
Tomcat 5.5.5?  I'd like to have a stability vote starting Thursday.

I think you're going to hate me, but *32505* is a serious issue (which
I
misundurstood at first), so it needs at least one hotfix :(

I don't hate you or anyone else ;)  I agree it's a fairly serious issue,
and it probably means 5.5.5 stays beta.  But that's not that big a
deal...

Yoav



This e-mail, including any attachments, is a confidential business 
communication, and may contain information that is confidential, proprietary 
and/or privileged.  This e-mail is intended only for the individual(s) to whom 
it is addressed, and may not be saved, copied, printed, disclosed or used by 
anyone else.  If you are not the(an) intended recipient, please immediately 
delete this e-mail from your computer system and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Annoyance in the deployer

2004-12-06 Thread Filipe Lautert
Em Seg, 2004-12-06 às 17:10 +0100, Remy Maucherat escreveu:
 Cox, Charlie wrote:
 
 It is annoying. I have a remote share on the network that is only static
 files and I had to convince someone to create a WEB-INF folder on that share
 and give them a nearly-empty web.xml. I would prefer to not have to maintain
 it.
 
 I don't quite understand your setup, though. If you specify your context 
 to some path using a context file, then you shouldn't need a web.xml. Is 
 that what you are doing ?
 
 I'm basing this on TC 5.5 (older TCs may or may not have different 
 limitations, so please use this version for testing), and my goal is to 
 improve the defaults if I can.
 

Why not put this configuration at server.xml or catalina.properties,
comming with default to have the directory? So, anyone can change this
without a hack.

filipe


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Annoyance in the deployer [T2004120600MT]

2004-12-06 Thread amazon
Dear [EMAIL PROTECTED],

Thank you for contacting DigitalEyes.net.  We received your e-mail message at 
10:43:22 AM on 12/6/04.  To ensure your message is handled in a timely and 
efficient manner, we have assigned a tracking number to your e-mail, 
T2004120600MT.  Please use this number when referencing this issue in any 
future correspondence.

Please do not reply to this automated notification. We prioritize our e-mail by 
the order in which it was received, so there is no need to send multiple 
messages regarding the same issue.  We typically respond to messages within one 
(1) business day, excluding holidays.

Again, thank you for writing DigitalEyes.net.  We appreciate your business.

Regards,


Customer Service Department
[EMAIL PROTECTED]
http://www.digitaleyes.net


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: TCK request

2004-12-06 Thread Remy Maucherat
Shapira, Yoav wrote:
I don't hate you or anyone else ;)  I agree it's a fairly serious issue,
and it probably means 5.5.5 stays beta.  But that's not that big a
deal...
It copies the contents of the drive where Tomcat is installed to a 
folder named conf/Catalina/localhost/context_path_here. It's 
recursive, so I don't know what it will do. All I know is that I killed 
my TC quite fast :)

Can you reproduce the issue ? (give the form a path to a war, but leave 
context empty)
I suppose most people will just use the form to upload a war just below, 
so this is not (thakfully) used too often. With the Ant task, I expect 
it to work ok, as the context attribute won't get submitted (and should 
be set to null).

Rémy
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Annoyance in the deployer

2004-12-06 Thread Cox, Charlie
I am using 4.1.29. This was enforced starting sometime after 4.1.24 which
did not require WEB-INF or web.xml. I assumed I was relying on an anomaly
that was  corrected and that it would be the same in 5.x. 

As I work on upgrading to 5.5, this would simplify my installation.

or as Filipe suggested, a flag to change the behavior would also help.

Charlie

 -Original Message-
 From: Remy Maucherat [mailto:[EMAIL PROTECTED]
 Sent: Monday, December 06, 2004 11:11 AM
 To: Tomcat Developers List
 Subject: Re: Annoyance in the deployer
 
 Cox, Charlie wrote:
 
 It is annoying. I have a remote share on the network that is only static
 files and I had to convince someone to create a WEB-INF folder on that
share
 and give them a nearly-empty web.xml. I would prefer to not have to
maintain
 it.
 
 I don't quite understand your setup, though. If you specify your context
 to some path using a context file, then you shouldn't need a web.xml. Is
 that what you are doing ?
 
 I'm basing this on TC 5.5 (older TCs may or may not have different
 limitations, so please use this version for testing), and my goal is to
 improve the defaults if I can.
 
 Rémy
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 32500] - specific text-encoding ignored for dynamically generated text

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32500.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32500





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 20:04 ---
OK, comprehensive reply :-)
Now it all makes sense together.
Thanks a lot.

Can I upload here (when I finish my work) short guidelines for how to put things
to work together (MySQL, tomcat, java I18N) as help for other people?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Adding header action filters to Catalina connector

2004-12-06 Thread Bill Barker

- Original Message -
From: Mladen Turk [EMAIL PROTECTED]
To: Tomcat Developers List [EMAIL PROTECTED]
Sent: Monday, December 06, 2004 4:04 AM
Subject: Adding header action filters to Catalina connector


 Hi All,

 What would be the proper solution for the following problems:

 1. Having server wide API for setting outgoing header.
 There should be a callback that can call a registered method
 for each registered header value.

 2. Having server wide API for taking actions on the
 particular registered input header value.

 Could something like that be accomplished with the current
 filters API or some extra core coding is required?

 For example:
 I wish to register a class that will when request with 'FOO=BAR'
 header is received (either in or out) an action will be taken
 with the 'BAR' and direction param.


 The purpose for that would be:
 1. Proxy(mod_jk) sends X_TOMCAT_QUERY=AVARAGE_PROC_TIME
 Tomcat's (X_TOMCAT_QUERY) handler will be called with
 AVERAGE_PROC_TIME param, gather stat and...
 2. Tomcat out header filter for X_TOMCAT_QUERY
 will on respond insert header X_TOMCAT_QUERY_AVERAGE_PROC_TIME=107


 Any ideas?

I'd think that adding a new AJP Message number would be the cleanest.
Allowing the response to be triggered by HTTP Headers in an arbitrary
Request is a security problem (I certainly don't want to publish this
information to the entire world :).  If the API gets complex enough, we
could resurrect HandlerDispatch to deal with it.  Otherwise, you would just
need to insert a Handler in the Jk request chain.


 MT.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 32547] New: - Tag Within Tag Generate Incorrect .java File

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32547.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32547

   Summary: Tag Within Tag Generate Incorrect .java File
   Product: Tomcat 5
   Version: 5.0.29
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Hello,

I have a very simple .jsp file that has the following content:

spring:nestedPath path=foo
...
spring:nestedPath path=bar
..
/spring:nestedPath
/spring:nestedPath

When compiling with Jasper2 (via the Ant Task), Java source code is created that
can't be compiled.

The error:
jspc:
[javac] Compiling 11 source files to C:\eclipse\workspace\Lala\build\classes
[javac]
C:\eclipse\workspace\Lala\build\jspc\org\apache\jsp\WEB_002dINF\jsp\newAccount_jsp.java:286:
cannot resolve symbol
[javac] symbol  : variable _jspx_nestedPath_1
[javac] location: class
org.apache.jsp.WEB_002dINF.jsp.newAccount_jsp.newAccount_jspHelper
[javac] _jspx_nestedPath_1 = nestedPath;

I have attached the source for the created .java file.  The variable,
_jspx_nestedPath_1 is declared outside of the scope of that line (hence the 
error).

The tag source code:
http://cvs.sourceforge.net/viewcvs.py/springframework/spring/src/org/springframework/web/servlet/tags/NestedPathTag.java?rev=1.3view=log

The tag tld:
http://cvs.sourceforge.net/viewcvs.py/springframework/spring/src/org/springframework/web/servlet/tags/spring.tld?rev=1.8view=log

My ant task that does the compiling:
jasper2
 trimSpaces=true
 validateXml=false
 uriroot=${web.dir}
 webXmlFragment=${build.dir}/compiled_jsp.xml
 outputDir=${build.dir}/jspc /
 
mkdir dir=${jsp.classes.dir} /

javac srcdir=${build.dir}/jspc
target=1.4
destdir=${jsp.classes.dir}
debug=on debuglevel=lines,vars,source
classpath refid=classpath /

Thanks, Seth

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32547] - Tag Within Tag Generate Incorrect .java File

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32547.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32547





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 22:20 ---
Created an attachment (id=13662)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=13662action=view)
Generated Java Source from JSP


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32547] - Tag Within Tag Generate Incorrect .java File

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32547.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32547





--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 22:20 ---
Created an attachment (id=13663)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=13663action=view)
The jsp file that creates the incorrect java source


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32548] New: - core dump from 1.2.70beta with no JkLogFile specified

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32548.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32548

   Summary: core dump from 1.2.70beta with no JkLogFile specified
   Product: Tomcat 5
   Version: Unknown
  Platform: Sun
OS/Version: Solaris
Status: NEW
  Severity: blocker
  Priority: P2
 Component: Native:JK
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Using mod_jk 1.2.7-beta, the JkLogFile directive must be declared or the 
process core dumps.

1.2.6 does not have this problem

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32550] New: - java.io.IOException: The system cannot find the path specified

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32550.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32550

   Summary: java.io.IOException: The system cannot find the path
specified
   Product: Tomcat 4
   Version: 4.1.31
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: blocker
  Priority: P2
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I am running tomcat 4.1.31 on windows XP with java 1.4.2_06,  i have placed war
files in the webapps directory.   The wars have expanded and directories have
been fully created.  

I recieve the error

java.io.IOException: The system cannot find the path specified

with the root cause:

java.io.FileNotFoundException:
C:\Program%20Files\Apache%20Group\Tomcat%204.1\webapps\envoke-server\WEB-INF\classes\db-s
erver.cfg (The system cannot find the path specified)

The preceeding path exists.  I have noticed that it is looking for
program%20Files\  where the %20 should be a space.  (I wonder if that is a 
problem?)

I have sucessfully deployed this in Apache 4.1.30

Here is the stdout.log stack


Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\dan.kingcd \Program Files\Apache Group\Tomcat 
4.1\bin

C:\Program Files\Apache Group\Tomcat 4.1\bincatalina run
Using CATALINA_BASE:   ..
Using CATALINA_HOME:   ..
Using CATALINA_TMPDIR: ..\temp
Using JAVA_HOME:   C:\j2sdk1.4.2_06
Dec 6, 2004 3:37:03 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-80
Starting service Tomcat-Standalone
Apache Tomcat/4.1.31
Dec 6, 2004 3:37:04 PM org.apache.struts.util.PropertyMessageResources init
INFO: Initializing, config='org.apache.struts.util.LocalStrings', 
returnNull=true
Dec 6, 2004 3:37:04 PM org.apache.struts.util.PropertyMessageResources init
INFO: Initializing, config='org.apache.struts.action.ActionResources',
returnNull=true
Dec 6, 2004 3:37:05 PM org.apache.struts.util.PropertyMessageResources init
INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources',
returnNull=true
The envoke server is being initialized.
Identity Manager starting.
Representative Router starting.
Server Configuration Manager [1.3.10-POC20041020] starting.
java.io.IOException: The system cannot find the path specified
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:828)
at com.asolutions.envoke.server.util.af.for(Unknown Source)
at com.asolutions.envoke.server.util.af.init(Unknown Source)
at com.asolutions.envoke.server.util.af.int(Unknown Source)
at com.asolutions.envoke.server.util.an.init(Unknown Source)
at
com.asolutions.envoke.server.util.DBConnection.dbOpenConnection(Unknown Source)
at com.asolutions.envoke.server.util.EnvokeConfig.getValue(Unknown 
Source)
at com.asolutions.envoke.server.util.BizRules.getLogInfoMessages(Unknown
Source)
at com.asolutions.envoke.server.util.ai.do(Unknown Source)
at
com.asolutions.envoke.server.identitymanager.ServerConfigurationManager.init(Unknown
Source)
at
com.asolutions.envoke.server.identitymanager.IdentityManager.init(Unknown 
Source)
at
com.asolutions.envoke.server.identitymanager.IdentityManager.getStaticInstance(Unknown
Source)
at com.asolutions.envoke.server.EnvokeServerStartup.a(Unknown Source)
at com.asolutions.envoke.server.EnvokeServerStartup.init(Unknown Source)
at
org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:888)
at 
org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:776)
at
org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3363)
at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:3586)
at
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:774)
at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:760)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:548)
at
org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:260)
at org.apache.catalina.core.StandardHost.install(StandardHost.java:741)
at 
org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:445)
at 
org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:353)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:671)
at
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
at

DO NOT REPLY [Bug 32550] - java.io.IOException: The system cannot find the path specified

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32550.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32550


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2004-12-06 23:06 ---
Look at the stack trace. The exception is occurring within your serlvet code.

I suggest you follow this up on the tomcat-user mailing list for advice.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32547] - Tag Within Tag Generate Incorrect .java File

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32547.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32547





--- Additional Comments From [EMAIL PROTECTED]  2004-12-07 00:45 ---
This is related to the variable element in the .tld file for the
spring:nestedPath tag.

So the question is, is it supported to have a nested tags that export a
variable?  Since it's the same tag, it's the same name.  I'm assuming yes (the
variable just becomes overwritten).  I see that Jasper is attempting to save the
old version before it becomes overwritten.  It's this older version that isn't
showing up in the correct scope.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-jk-ant (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-jk-ant *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-ant/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [jkant.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-ant/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-jk-ant.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-jk-ant (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only jkant 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
Buildfile: build.xml

jkant:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/classes/META-INF
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/lib
[javac] Compiling 17 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/classes/META-INF
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/lib/jkant.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-ant/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk-ant/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #63.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-dbcp (in module jakarta-tomcat-5) success

2004-12-06 Thread bobh
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-dbcp *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-dbcp/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [naming-factory-dbcp.jar] identifier set to project name
 -INFO- Made directory 
[/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps]



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-dbcp/gump_work/build_jakarta-tomcat-5_jakarta-tomcat-dbcp.html
Work Name: build_jakarta-tomcat-5_jakarta-tomcat-dbcp (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-collections.home=/usr/local/gump/public/workspace/jakarta-commons/collections
 -Dcommons-dbcp.home=/usr/local/gump/public/workspace/jakarta-commons/dbcp 
-Dcommons-dbcp.version=06122004 
-Dtomcat-dbcp.home=/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps
 -Dcommons-pool.home=/usr/local/gump/public/workspace/jakarta-commons/pool 
build-tomcat-dbcp 
[Working Directory: /usr/local/gump/public/workspace/jakarta-tomcat-5]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar
-
Buildfile: build.xml

build-tomcat-dbcp:

-build-tomcat-dbcp:
 [copy] Copying 65 files to 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps
[mkdir] Created dir: 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/src/java/org/apache/tomcat/dbcp
 [move] Moving 57 files to 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/src/java/org/apache/tomcat/dbcp
[mkdir] Created dir: 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/classes
[javac] Compiling 57 source files to 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
  [jar] Building jar: 
/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/naming-factory-dbcp.jar

BUILD SUCCESSFUL
Total time: 4 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-dbcp/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-dbcp/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #138.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-util (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-util *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-util/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat-util.jar] identifier set to project name
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jsse exists, no need to add for property jsse.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-util/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-util.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-util (Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
 -Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Djsse.home=/usr/local/gump/packages/jsse1.0.3 
-Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/jsse1.0.3/lib/jcert.jar:/usr/local/gump/packages/jsse1.0.3/lib/jnet.jar:/usr/local/gump/packages/jsse1.0.3/lib/jsse.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
-
Buildfile: build.xml

detect:

build-prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build/lib

tomcat-util.jar:
 [echo] - Java-utils -
 [echo] -- puretls.present = ${puretls.present}
 [echo] -- jsse.present = true 
/usr/local/gump/packages/jsse1.0.3/lib/jsse.jar
 [echo] -- commons-logging = true
 [echo] -- jmx = true /usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar
 [echo] -- modeler = ${modeler.present} 
/usr/share/java/commons-modeler-1.1/commons-modeler.jar
 [echo] -- JDK14 = true
[javac] Compiling 92 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 19 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar

build-main:

BUILD SUCCESSFUL
Total time: 4 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-util/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-util/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #169.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-util-coyote_10 (in module jakarta-tomcat-connectors-coyote_10) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-util-coyote_10 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors-coyote_10/jakarta-tomcat-util-coyote_10/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat-util.jar] identifier set to project name
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.jar.
 -DEBUG- Dependency on jsse exists, no need to add for property jsse.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors-coyote_10/jakarta-tomcat-util-coyote_10/gump_work/build_jakarta-tomcat-connectors-coyote_10_jakarta-tomcat-util-coyote_10.html
Work Name: 
build_jakarta-tomcat-connectors-coyote_10_jakarta-tomcat-util-coyote_10 (Type: 
Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Djsse.home=/usr/local/gump/packages/jsse1.0.3 
-Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/public/workspace/jmx/jmx/lib/jmxri.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors-coyote_10/util]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar:/usr/local/gump/packages/jsse1.0.3/lib/jcert.jar:/usr/local/gump/packages/jsse1.0.3/lib/jnet.jar:/usr/local/gump/packages/jsse1.0.3/lib/jsse.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
-
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/CommonLogHandler.java:132:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] case Log.INFORMATION:
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/CommonLogHandler.java:135:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] case Log.DEBUG:
[javac]  ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/LogManager.java:101:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] Log l=(Log)loggers.get( k );
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/LogManager.java:101:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] Log l=(Log)loggers.get( k );
[javac]^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/LogManager.java:121:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] Log log=new Log( channel, prefix, proxy, owner );
[javac] ^
[javac] 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/util/java/org/apache/tomcat/util/log/LogManager.java:121:
 warning: org.apache.tomcat.util.log.Log in org.apache.tomcat.util.log has been 
deprecated
[javac] Log log=new Log( channel, prefix, proxy, owner );
[javac]

[GUMP@brutus]: Project jakarta-tomcat-coyote (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-coyote *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat-coyote.jar] identifier set to project name
 -DEBUG- Dependency on jakarta-tomcat-util exists, no need to add for property 
util.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-coyote.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-coyote (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/public/workspace/jmx/jmx/lib/jmxri.jar 
-Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Dtomcat-util.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
 
-Dutil.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build
 shared.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
-
Buildfile: build.xml

init:
 [echo]  Coyote 1.0-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/docs/api
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/conf

compile.shared:
[javac] Compiling 13 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 4 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes
 [copy] Copied 2 empty directories to 1 empty directory under 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes

shared.jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, 

[GUMP@brutus]: Project jakarta-tomcat-http11 (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-http11 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-http11/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat-http11.jar] identifier set to project name
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-http11/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-http11.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-http11 (Type: Build)
Work ended in a state of : Success
Elapsed: 2 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
 
-Dtomcat-coyote.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar
 
-Dtomcat-util.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/http11]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
-
Buildfile: build.xml

init:
 [echo]  Coyote HTTP/1.1 Connector 1.0-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/docs/api
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/conf

compile-only:
[javac] Compiling 15 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Protocol.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 4 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/lib/tomcat-http11.jar

compile:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/http11/build/lib/tomcat33-resource.jar

BUILD SUCCESSFUL
Total time: 2 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-http11/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-http11/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 

[GUMP@brutus]: Project jakarta-tomcat-jasper_tc5 (in module jakarta-tomcat-jasper_tc5) success

2004-12-06 Thread bobh
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-jasper_tc5 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-jasper_tc5/jakarta-tomcat-jasper_tc5/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [jasper-runtime.jar] identifier set to output basename: 
[jasper-runtime]
 -DEBUG- Output [jasper-compiler.jar] identifier set to output basename: 
[jasper-compiler]
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-jasper_tc5/jakarta-tomcat-jasper_tc5/gump_work/build_jakarta-tomcat-jasper_tc5_jakarta-tomcat-jasper_tc5.html
Work Name: build_jakarta-tomcat-jasper_tc5_jakarta-tomcat-jasper_tc5 (Type: 
Build)
Work ended in a state of : Success
Elapsed: 5 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djsp-api.jar=/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar
 
-Dcommons-el.jar=/usr/local/gump/public/workspace/jakarta-commons/el/dist/commons-el.jar
 
-Djasper-compiler-jdt.jar=/usr/local/gump/packages/eclipse-3.0.1/plugins/org.eclipse.jdt.core_3.0.1/jdtcore.jar
 -Dant.jar=/usr/local/gump/public/workspace/ant/dist/lib/ant.jar 
-Dservlet-api.jar=/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar
 -Dcompile.source=1.4 dist 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-jasper_tc5/jasper2]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/el/dist/commons-el.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar:/usr/local/gump/packages/eclipse-3.0.1/plugins/org.eclipse.jdt.core_3.0.1/jdtcore.jar
-
Buildfile: build.xml

build-prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/bin
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/common/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/common/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/lib

copy-launcher.jars:

build-static:
 [copy] Copying 4 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/bin

build-only:
[javac] Compiling 87 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/src/share/org/apache/jasper/servlet/JspServletWrapper.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 4 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/lib/jasper-compiler.jar
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/lib/jasper-runtime.jar

build-main:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-jasper_tc5/jasper2/build/shared/lib

dist:
[mkdir] Created dir: 

[GUMP@brutus]: Project tomcat-catalina (in module jakarta-tomcat-4.0) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project tomcat-catalina *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-4.0/tomcat-catalina/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [catalina.jar] identifier set to project name
 -DEBUG- Dependency on jakarta-servletapi-4 exists, no need to add for property 
servlet.jar.
 -DEBUG- Dependency on commons-logging exists, no need to add for property 
commons-logging-api.jar.
 -DEBUG- Dependency on jakarta-regexp exists, no need to add for property 
regexp.jar.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-4.0/tomcat-catalina/gump_work/build_jakarta-tomcat-4.0_tomcat-catalina.html
Work Name: build_jakarta-tomcat-4.0_tomcat-catalina (Type: Build)
Work ended in a state of : Success
Elapsed: 14 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-beanutils.jar=/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar
 -Djtc.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors 
-Dversion=4.1.25-dev 
-Dregexp.jar=/usr/local/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-06122004.jar
 
-Dcommons-logging-api.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
 
-Dservlet.jar=/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar
 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
 
-Dcommons-collections.jar=/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar
 
-Dcommons-digester.jar=/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar
 deploy-catalina 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-4.0/catalina]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-06122004.jar:/usr/local/gump/public/workspace/ant/bootstrap/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/bootstrap/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/fileupload/target/commons-fileupload-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
-
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/catalina/build/server/lib

build-catalina:
[javac] Compiling 335 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/catalina/build/server/classes
[javac] This version of java does not support the classic compiler; 
upgrading to modern
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
 [copy] Copying 76 files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/catalina/build/server/classes

build-main:

deploy-prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build/bin
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build/logs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build/common/classes
[mkdir] Created 

[GUMP@brutus]: Project jakarta-tomcat (in module jakarta-tomcat) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat/jakarta-tomcat/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [tomcat-util.jar] identifier set to output basename: 
[tomcat-util]
 -DEBUG- Output [tomcat_core.jar] identifier set to output basename: 
[tomcat_core]
 -DEBUG- Output [tomcat_modules.jar] identifier set to output basename: 
[tomcat_modules]
 -DEBUG- Output [facade22.jar] identifier set to output basename: [facade22]
 -DEBUG- Output [core_util.jar] identifier set to output basename: [core_util]
 -DEBUG- Output [jasper.jar] identifier set to output basename: [jasper]
 -DEBUG- Output [container_util.jar] identifier set to output basename: 
[container_util]
 -DEBUG- Output [tomcat.jar] identifier set to output basename: [tomcat]
 -DEBUG- Dependency on jakarta-servletapi exists, no need to add for property 
servlet22.jar.
 -DEBUG- Dependency on jmx exists, no need to add for property jmxtools.jar.
 -DEBUG- Dependency on ant exists, no need to add for property ant.home.
 -DEBUG- Dependency on jsse exists, no need to add for property jsse.home.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat/jakarta-tomcat/gump_work/build_jakarta-tomcat_jakarta-tomcat.html
Work Name: build_jakarta-tomcat_jakarta-tomcat (Type: Build)
Work ended in a state of : Success
Elapsed: 19 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djakarta-tomcat-connectors=/usr/local/gump/public/workspace/jakarta-tomcat-connectors
 
-Djtc.coyote.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote
 -Djaxp.home=/usr/local/gump/packages/java_xml_pack-summer-02_01 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmxtools.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar 
-Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
-Dtomcat-util.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
 -Dant.home=/usr/local/gump/public/workspace/ant/dist 
-Dservlet22.jar=/usr/local/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar
 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
 
-Djtc.http11.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/http11/build
 -Djsse.home=/usr/local/gump/packages/jsse1.0.3 main.lite 
[Working Directory: /usr/local/gump/public/workspace/jakarta-tomcat]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-servletapi/dist/lib/servlet.jar:/usr/local/gump/packages/jsse1.0.3/lib/jcert.jar:/usr/local/gump/packages/jsse1.0.3/lib/jnet.jar:/usr/local/gump/packages/jsse1.0.3/lib/jsse.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-06122004.jar:/usr/local/gump/public/workspace/logging-log4j/log4j-chainsaw-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar
-
[style] Processing 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk/xdocs/howto/iis.xml
 to 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk/build/docs/howto/printer/iis.html
[style] Processing 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk/xdocs/howto/index.xml
 to 

[GUMP@brutus]: Project jakarta-tomcat-coyote-tomcat4 (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-coyote-tomcat4 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat4/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat4-coyote.jar] identifier set to project name
 -DEBUG- Dependency on tomcat-catalina exists, no need to add for property 
catalina.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat4/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-coyote-tomcat4.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-coyote-tomcat4 (Type: 
Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
-Dcatalina.home=/usr/local/gump/public/workspace/jakarta-tomcat-4.0/build 
-Dservlet.jar=/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar
 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
 
-Dtomcat-util.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
 tomcat4.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-tomcat-4.0/build/server/lib/catalina.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar
-
Buildfile: build.xml

init:
 [echo]  Coyote 1.0-dev 

prepare:

static:

compile.shared:

compile.tomcat4:
[javac] Compiling 13 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.

tomcat4.jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat4-coyote.jar

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat4/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat4/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #331.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-coyote-tomcat3 (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-coyote-tomcat3 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat3/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat33-coyote.jar] identifier set to project name
 -DEBUG- Dependency on jakarta-tomcat exists, no need to add for property 
tomcat33.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat3/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-coyote-tomcat3.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-coyote-tomcat3 (Type: 
Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcommons-logging.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar
 -Dtomcat33.home=/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat 
-Dtomcat-util.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar tomcat33.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/tomcat_core.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/tomcat_modules.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/facade22.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/core_util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/jasper.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/container_util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/tomcat.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar
-
Buildfile: build.xml

init:
 [echo]  Coyote 1.0-dev 

prepare:

static:

compile.shared:

compile.tomcat33:
[javac] Compiling 4 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/classes
[javac] Note: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3/Tomcat3Response.java
 uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.

tomcat33.jar:
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat33-coyote.jar

BUILD SUCCESSFUL
Total time: 3 seconds
-

To subscribe to this information via syndicated feeds:
- RSS: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat3/rss.xml
- Atom: 
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-coyote-tomcat3/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 16001506122004, brutus:brutus-public:16001506122004
Gump E-mail Identifier (unique within run) #338.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[GUMP@brutus]: Project jakarta-tomcat-catalina (in module jakarta-tomcat-catalina) success

2004-12-06 Thread bobh
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-catalina *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-catalina/jakarta-tomcat-catalina/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant exists, no need to add for property ant.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jaf exists, no need to add for property activation.home.
 -DEBUG- Dependency on jakarta-tomcat-coyote exists, no need to add for 
property tomcat-coyote.home.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-catalina/jakarta-tomcat-catalina/gump_work/build_jakarta-tomcat-catalina_jakarta-tomcat-catalina.html
Work Name: build_jakarta-tomcat-catalina_jakarta-tomcat-catalina (Type: Build)
Work ended in a state of : Success
Elapsed: 34 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dtomcat33.home=--UnSet-- 
-Dcatalina.build=/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build 
-Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Djdbc20ext.jar=/usr/local/gump/packages/jdbc2_0/jdbc2_0-stdext.jar 
-Djtc.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors 
-Djasper.home=/usr/local/gump/public/workspace/jakarta-tomcat-jasper_tc5/jasper2
 -Dant.home=/usr/local/gump/public/workspace/ant/dist -Dcompile.source=1.4 
-Dcommons-collections.jar=/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar
 
-Dcatalina.deploy=/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build
 -Djaas.jar=/usr/local/gump/packages/jaas1_0/lib/jaas.jar 
-Dcommons-fileupload.jar=/usr/local/gump/public/workspace/jakarta-commons/fileupload/target/commons-fileupload-06122004.jar
 
-Dcommons-digester.jar=/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar
 -Dactivation.home=/usr/local/gump/packages/jaf-1.0.1 
-Dcatalina.home=/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build 
-Dcommons-launcher.jar=/usr/local/gump/public/workspace/jakarta-commons/launcher/dist/bin/commons-launcher.jar
 -Dtomcat.build=/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build 
-Dcommons-beanutils.jar=/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar
 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 
-Dtomcat-coyote.home=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote
 
-Dcommons-logging-api.jar=/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar
 
-Dtomcat-dbcp.jar=/usr/local/gump/public/workspace/jakarta-tomcat-5/tomcat-deps/naming-factory-dbcp.jar
 -Djta.jar=/usr/local/gump/packages/jta-spec1_0_1/jta-spec1_0_1.jar 
deploy-catalina 
[Working Directory: /usr/local/gump/public/workspace/jakarta-tomcat-catalina]
CLASSPATH: 

[GUMP@brutus]: Project jakarta-tomcat-4.0 (in module jakarta-tomcat-4.0) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-4.0 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-4.0/jakarta-tomcat-4.0/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [naming-resources.jar] identifier set to output basename: 
[naming-resources]
 -DEBUG- Output [servlets-default.jar] identifier set to output basename: 
[servlets-default]
 -DEBUG- Output [naming-common.jar] identifier set to output basename: 
[naming-common]
 -DEBUG- Output [catalina.jar] identifier set to output basename: [catalina]
 -DEBUG- Output [bootstrap.jar] identifier set to output basename: [bootstrap]
 -DEBUG- Output [servlets-common.jar] identifier set to output basename: 
[servlets-common]
 -DEBUG- Output [servlets-invoker.jar] identifier set to output basename: 
[servlets-invoker]
 -DEBUG- Dependency on javamail exists, no need to add for property mail.jar.
 -DEBUG- Dependency on jaf exists, no need to add for property activation.jar.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.jar.
 -DEBUG- Dependency on jakarta-servletapi-4 exists, no need to add for property 
servlet.jar.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
xerces.jar.
 -DEBUG- Dependency on jakarta-tomcat-util exists, no need to add for property 
tomcat-util.jar.
 -DEBUG- Dependency on commons-logging exists, no need to add for property 
commons-logging-api.jar.
 -DEBUG- Dependency on ant exists, no need to add for property ant.home.
 -DEBUG- Dependency on jakarta-servletapi-4 exists, no need to add for property 
servlet.home.
 -DEBUG- Dependency on jsse exists, no need to add for property jsse.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmxtools.jar.
 -DEBUG- Dependency on jndi exists, no need to add for property jndi.home.
 -DEBUG- Dependency on javamail exists, no need to add for property mail.home.
 -DEBUG- Dependency on jakarta-regexp exists, no need to add for property 
regexp.home.
 -DEBUG- Dependency on jakarta-regexp exists, no need to add for property 
regexp.jar.
 -DEBUG- Dependency on jaf exists, no need to add for property activation.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-4.0/jakarta-tomcat-4.0/gump_work/build_jakarta-tomcat-4.0_jakarta-tomcat-4.0.html
Work Name: build_jakarta-tomcat-4.0_jakarta-tomcat-4.0 (Type: Build)
Work ended in a state of : Success
Elapsed: 53 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Djaas.jar=/usr/local/gump/packages/jaas1_0/lib/jaas.jar 
-Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
-Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Djdbc20ext.jar=/usr/local/gump/packages/jdbc2_0/jdbc2_0-stdext.jar 
-Dregexp.jar=/usr/local/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-06122004.jar
 -Dmail.home=/usr/local/gump/packages/javamail-1.3.2 
-Dant.home=/usr/local/gump/public/workspace/ant/dist 
-Dservlet.jar=/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar
 
-Dxerces.jar=/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 
-Dcommons-collections.jar=/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-06122004.jar
 -Dldap.jar=/usr/local/gump/packages/ldap-1_2_4/lib/ldap.jar 
-Djsse.home=/usr/local/gump/packages/jsse1.0.3 
-Dtomcat-coyote.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar
 -Dmail.jar=/usr/local/gump/packages/javamail-1.3.2/mail.jar 
-Dcommons-digester.jar=/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar
 -Djndi.jar=/usr/local/gump/packages/jndi1_2_1/lib/jndi.jar 
-Djmxtools.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar 
-Dactivation.home=/usr/local/gump/packages/jaf-1.0.1 
-Dregexp.home=/usr/local/gump/public/workspace/jakarta-regexp/build 
-Dcommons-beanutils.jar=/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar
 

[GUMP@brutus]: Project jakarta-tomcat-jk (in module jakarta-tomcat-connectors) success

2004-12-06 Thread Bill Barker
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-jk *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [tomcat-jk2.jar] identifier set to output basename: [tomcat-jk2]
 -DEBUG- Output [jkconfig.jar] identifier set to output basename: [jkconfig]
 -DEBUG- Output [tomcat-jni.jar] identifier set to output basename: [tomcat-jni]
 -DEBUG- Dependency on jakarta-tomcat-coyote exists, no need to add for 
property tomcat-coyote.jar.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.jar.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors/jakarta-tomcat-jk/gump_work/build_jakarta-tomcat-connectors_jakarta-tomcat-jk.html
Work Name: build_jakarta-tomcat-connectors_jakarta-tomcat-jk (Type: Build)
Work ended in a state of : Success
Elapsed: 3 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Djsse.home=/usr/local/gump/packages/jsse1.0.3 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/public/workspace/jmx/jmx/lib/jmxri.jar 
-Dtomcat-coyote.jar=/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar
 -Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Dservlet-api.jar=/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar
 
-Dtc5-catalina.jar=/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build/server/lib/catalina.jar
 jkjava-tc5 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors/jk]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors/coyote/build/lib/tomcat-coyote.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar:/usr/local/gump/public/workspace/jakarta-tomcat-catalina/build/server/lib/catalina.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar
-
Buildfile: build.xml

detect:
 [echo]  jakarta-tomcat-connectors 

prepare:
Overriding previous definition of reference to xml-apis.classpath

report:
 [echo] Tomcat33: ${tomcat33.detect} /usr/share/java/jakarta-tomcat-3.3.2
 [echo] Tomcat40:  ${tomcat40.detect} 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-4.0/build
 [echo] Tomcat41: ${tomcat41.detect} /usr/share/java/jakarta-tomcat-4.1.30
 [echo] Tomcat5:  true 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-catalina/build
 [echo] Apache13: ${apache13.detect} ${apache13.home}
 [echo] Apache2: ${apache2.detect} ${apache2.home}
 [echo] iPlanet:  ${iplanet.detect} ${iplanet.home}
 [echo] IIS:  ${iis.detect} ${iis.home}
 [echo] AOLserver: ${aolserver.detect} ${aolserver.home}
 [echo] jmx:  /usr/local/gump/public/workspace/jmx/jmx/lib/jmxri.jar 
${jmx.detect} 
/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 true

jkjava-static:

jkjava-shared:

jkjava-tc5:
[javac] Compiling 4 source files to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/classes
  [jar] Building jar: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors/jk/build/lib/jkconfig.jar

BUILD SUCCESSFUL
Total time: 2 

[GUMP@brutus]: Project jakarta-tomcat-5 (in module jakarta-tomcat-5) failed

2004-12-06 Thread bobh
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 [EMAIL PROTECTED]

Project jakarta-tomcat-5 has an issue affecting its community integration.
This issue affects 11 projects.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- avalon-http-context :  Avalon SVN
- avalon-http-demo :  Avalon SVN
- avalon-http-examples :  Avalon SVN
- avalon-http-impl :  Avalon SVN
- avalon-http-server :  Avalon SVN
- avalon-http-servlet :  Avalon SVN
- avalon-http-static :  Avalon SVN
- avalon-http-test :  Avalon SVN
- avalon-planet-facilities :  Avalon SVN
- jakarta-tomcat-5 :  Servlet 2.4 and JSP 2.0 Reference Implementation
- metro-reflector-blocks-complete :  Avalon SVN


Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-5/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [servlets-default.jar] identifier set to output basename: 
[servlets-default]
 -DEBUG- Output [servlets-invoker.jar] identifier set to output basename: 
[servlets-invoker]
 -DEBUG- Output [catalina.jar] identifier set to output basename: [catalina]
 -DEBUG- Output [bootstrap.jar] identifier set to output basename: [bootstrap]
 -ERROR- Output with id xml-apis was not found in project xml-xerces 
 -ERROR- Unhandled Property: xml-apis.jar on: Ant on Project:jakarta-tomcat-5
 -DEBUG- Dependency on javamail exists, no need to add for property mail.jar.
 -DEBUG- Dependency on jaf exists, no need to add for property activation.jar.
 -DEBUG- Dependency on jakarta-servletapi-5-servlet exists, no need to add for 
property servlet-api.jar.
 -DEBUG- Dependency on jakarta-servletapi-5-jsp exists, no need to add for 
property jsp-api.jar.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
xercesImpl.jar.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
xml-apis.jar.
 -DEBUG- Dependency on jakarta-tomcat-util exists, no need to add for property 
tomcat-util.jar.
 -DEBUG- Dependency on commons-el exists, no need to add for property 
commons-el.jar.
 -DEBUG- Dependency on commons-logging exists, no need to add for property 
commons-logging-api.jar.
 -DEBUG- Dependency on commons-modeler exists, no need to add for property 
commons-modeler.jar.
 -DEBUG- Dependency on ant exists, no need to add for property ant.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.jar.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx-tools.jar.
 -DEBUG- Dependency on javamail exists, no need to add for property mail.home.
 -DEBUG- Dependency on jakarta-tomcat-coyote exists, no need to add for 
property tomcat-coyote.home.
 -DEBUG- Dependency on jakarta-tomcat-jasper_tc5 exists, no need to add for 
property jasper.home.
 -DEBUG- Dependency on jaf exists, no need to add for property activation.home.
 -DEBUG- Dependency on commons-modeler exists, no need to add for property 
commons-modeler.home.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
commons-daemon.jsvc.tar.gz.
 -DEBUG- Dependency on struts exists, no need to add for property struts.home.
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-5/jakarta-tomcat-5/gump_work/build_jakarta-tomcat-5_jakarta-tomcat-5.html
Work Name: build_jakarta-tomcat-5_jakarta-tomcat-5 (Type: Build)
Work ended in a state of : Failed
Elapsed: 1 min 8 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/serializer.jar:/usr/local/gump/public/workspace/xml-xalan/java/build/xalan-unbundled.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dtomcat33.home=--UnSet-- 
-Djsp-api.jar=/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr152/dist/lib/jsp-api.jar
 -Djmx.jar=/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar 
-Djasper-compiler-jdt.jar=/usr/local/gump/packages/eclipse-3.0.1/plugins/org.eclipse.jdt.core_3.0.1/jdtcore.jar
 -Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Djdbc20ext.jar=/usr/local/gump/packages/jdbc2_0/jdbc2_0-stdext.jar 
-Dmail.home=/usr/local/gump/packages/javamail-1.3.2 
-Dant.home=/usr/local/gump/public/workspace/ant/dist 

[GUMP@brutus]: Project jakarta-tomcat-coyote_10 (in module jakarta-tomcat-connectors-coyote_10) success

2004-12-06 Thread Stefan Bodewig
To whom it may satisfy...

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 [EMAIL PROTECTED]

Project jakarta-tomcat-coyote_10 *no longer* has an issue.
The current state of this project is 'Success'.

Full details are available at:

http://brutus.apache.org/gump/public/jakarta-tomcat-connectors-coyote_10/jakarta-tomcat-coyote_10/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [tomcat-coyote.jar] identifier set to project name
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.home.
 -DEBUG- Dependency on jmx exists, no need to add for property jmx.jar.
 -DEBUG- Dependency on tomcat-catalina exists, no need to add for property 
catalina.home.
 -INFO- No license on redistributable project with outputs.



The following work was performed:
http://brutus.apache.org/gump/public/jakarta-tomcat-connectors-coyote_10/jakarta-tomcat-coyote_10/gump_work/build_jakarta-tomcat-connectors-coyote_10_jakarta-tomcat-coyote_10.html
Work Name: build_jakarta-tomcat-connectors-coyote_10_jakarta-tomcat-coyote_10 
(Type: Build)
Work ended in a state of : Success
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main 
-Dgump.merge=/home/gump/workspaces2/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only 
-Dcatalina.home=/usr/local/gump/public/workspace/jakarta-tomcat-4.0/build 
-Djmx.home=/usr/local/gump/packages/jmx-1_2-ri 
-Dcommons-modeler.jar=/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
 -Djmx.jar=/usr/local/gump/public/workspace/jmx/jmx/lib/jmxri.jar 
[Working Directory: 
/usr/local/gump/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-stylebook.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxri.jar:/usr/local/gump/packages/jmx-1_2-ri/lib/jmxtools.jar:/usr/local/gump/public/workspace/jakarta-tomcat-connectors-coyote_10/util/build/lib/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/usr/local/gump/public/workspace/jakarta-tomcat-4.0/build/server/lib/catalina.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/tomcat-util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/tomcat_core.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/tomcat_modules.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/facade22.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/common/core_util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/jasper.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/container/container_util.jar:/usr/local/gump/public/workspace/jakarta-tomcat/build/tomcat/lib/tomcat.jar:/usr/local/gump/public/workspace/jakarta-commons/modeler/dist/commons-modeler-06122004.jar
-
init:
 [echo]  Coyote 1.0-dev 

prepare:
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/classes
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/conf
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/docs
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/docs/api
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/lib
[mkdir] Created dir: 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/tests

static:
 [copy] Copying 1 file to 
/home/gump/workspaces2/public/workspace/jakarta-tomcat-connectors-coyote_10/coyote/build/conf

report-tc5:

report-tc4:
 [echo] Tomcat4 detected 

report-tc33:
 [echo] Tomcat3.3 detected 

report:

compile.shared:
[javac] Compiling 11 source files to 

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_msg_buff.c

2004-12-06 Thread mturk
mturk   2004/12/06 20:37:09

  Modified:jk/native/common jk_msg_buff.c
  Log:
  Fix core dump if log is not defined.
  
  Revision  ChangesPath
  1.25  +4 -2  jakarta-tomcat-connectors/jk/native/common/jk_msg_buff.c
  
  Index: jk_msg_buff.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_msg_buff.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- jk_msg_buff.c 19 Nov 2004 12:59:54 -  1.24
  +++ jk_msg_buff.c 7 Dec 2004 04:37:09 -   1.25
  @@ -397,7 +397,9 @@
   char *current;
   int j;
   int len = msg-len;
  -
  +
  +if (l == NULL)
  +return;
   if (level == JK_LOG_DEBUG_LEVEL) {
   len = 0;
   if (l-level == JK_LOG_TRACE_LEVEL)
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 32548] - core dump from 1.2.70beta with no JkLogFile specified

2004-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=32548.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32548


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2004-12-07 05:38 ---
Fixed in the CVS.
The affected file is jk_msg_dump.c
Can you confirm it works on solaris?


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]