DO NOT REPLY [Bug 36834] New: - Wrong message length in body chunks ?

2005-09-27 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=36834.
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=36834

   Summary: Wrong message length in body chunks ?
   Product: Tomcat 5
   Version: Unknown
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Native:JK
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


jk_ajp13.h uses (line 43): AJP13_MAX_SEND_BODY_SZ = DEF_BUFFER_SZ - 6

but the start of the message is

2 header bytes
2 bytes for the message length
1 byte for the message type
2 bytes for the chunk length.

= a total of 7 bytes.  

The buffer usable space should be DEF_BUFFER_SZ - 7, if I'm not wrong

-- 
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 36834] - Wrong message length in body chunks ?

2005-09-27 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=36834.
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=36834


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
   ||com




-- 
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 36834] - Wrong message length in body chunks ?

2005-09-27 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=36834.
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=36834


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-09-28 06:35 ---
Request Body messages don't have a 'type' field in the AJP/1.3 protocol.

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



message

2005-06-21 Thread kief
Your file is attached.


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

Event log message: Somebody try to hack into the site!!!

2005-05-12 Thread Warren Barton - BGT Partners
Hello, I have Tomcat served via an IIS ISAPI filter on Windows 2003, all
is working well except... I get this message repeatedly each day in my
Windows Event Viewer:

Application Event Log failure message: [1] Emerg: [jk_isapi_plugin.c
(434)]: HttpFilterProc [/web-inf/] points to the web-inf or meta-inf
directory. Somebody try to hack into the site!!!

I've googled and yahooed as much as I can on this one, nothing
definitive. What servlet actions could trigger this message, or what
actions at all for that matter? Any help is greatly appreciated!

Thanks,

- Warren


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



RE: Event log message: Somebody try to hack into the site!!!

2005-05-12 Thread Jay Burgess
The beauty of open source is that you can look at the source. :)  I searched for
your error string and ran across the following in the HttpFilterProc() function
in jk_isapi_plugin.c.  It looks like it's trapping for an attempt to access
WEB-INF or META-INF directly (which is illegal), and correctly logging an error
and returning 403 Forbidden.

/*
 * Check if somebody is feeding us with his own TOMCAT data headers.
 * We reject such postings !
 */
env-l-jkLog(env, env-l, JK_LOG_DEBUG,
HttpFilterProc check if [%s] is pointing to the web-inf directory\n, 
uri);

if(jk_requtil_uriIsWebInf(uri)) {
env-l-jkLog(env, env-l,  JK_LOG_EMERG, 
HttpFilterProc [%s] points to the web-inf or meta-inf
 directory.\nSomebody try to hack into the site!!!\n, uri);
write_error_response(pfc,403 Forbidden, HTML_ERROR_403);
workerEnv-globalEnv-releaseEnv( workerEnv-globalEnv, env );
return SF_STATUS_REQ_FINISHED;
}

Jay

| Jay Burgess [Vertical Technology Group]
| Essential Technology Links via RSS
| http://www.vtgroup.com/

-Original Message-
From: Warren Barton - BGT Partners [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 12, 2005 3:15 PM
To: tomcat-dev@jakarta.apache.org
Subject: Event log message: Somebody try to hack into the site!!!

Hello, I have Tomcat served via an IIS ISAPI filter on Windows 2003, all
is working well except... I get this message repeatedly each day in my
Windows Event Viewer:

Application Event Log failure message: [1] Emerg: [jk_isapi_plugin.c
(434)]: HttpFilterProc [/web-inf/] points to the web-inf or meta-inf
directory. Somebody try to hack into the site!!!

I've googled and yahooed as much as I can on this one, nothing
definitive. What servlet actions could trigger this message, or what
actions at all for that matter? Any help is greatly appreciated!

Thanks,

- Warren


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








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



DO NOT REPLY [Bug 34647] - Tomcat cluster - Unable to receive message through TCP Channel

2005-05-04 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=34647.
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=34647





--- Additional Comments From [EMAIL PROTECTED]  2005-05-04 10:56 ---
(In reply to comment #1)
 The strack trace indicates that you have a principal (you are logged in) but 
 the login name is null. Could you give us a small test case if you can create 
 one and reproduce the error?

Hi Filip...

Have you any information about the bug reported?

Thanks in advance,

Anabel.

-- 
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 34273] - Better error message for inexisting bootstrapping commands

2005-05-03 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=34273.
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=34273


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-05-03 16:13 ---
Patch applied.  Thank you.

-- 
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 34647] - Tomcat cluster - Unable to receive message through TCP Channel

2005-04-28 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=34647.
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=34647





--- Additional Comments From [EMAIL PROTECTED]  2005-04-28 08:49 ---
(In reply to comment #1)
 The strack trace indicates that you have a principal (you are logged in) but 
 the login name is null. Could you give us a small test case if you can create 
 one and reproduce the error?

Hi Filip.

I have just done a test. I stopped one of the nodes in the cluster and started 
it again... as there wasn't any active session in the moment, no problem 
reported when node starts. The two nodes found each other without any problem.

Then, I have logged in with an user. It seems to be no problem with the logon, 
and I can correctly work with the application. When I stopped again one of the 
nodes, I can continue working whith the application because the other node 
takes the control. But, when I started again the node that was down, the 
situation that I have explained in my first post, it is repeated.

In that moment, the solution to communicate correctly the two nodes again is to 
stop and start both of them.

This is a big problem, because I don't have a real cluster... I only have load 
balancing and failover for the first time, because if one node fails, I can't 
do the cluster again... it is only possible if I restarts the two nodes

Best regards.

-- 
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 34647] New: - Tomcat cluster - Unabel to receive message through TCP Channel

2005-04-27 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=34647.
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=34647

   Summary: Tomcat cluster - Unabel to receive message through TCP
Channel
   Product: Tomcat 5
   Version: 5.0.28
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: P2
 Component: Catalina:Cluster
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


We have a cluster with two Tomcat servers. When we restart one of the nodes, 
without restarting the other one, it seems to be a problem in the communication 
between them. This is the log trace in the node that restarts, when it starts:

[main] INFO  org.apache.catalina.cluster.session.DeltaManager  - Starting 
clustering manager...:/TEST
[main] WARN  org.apache.catalina.cluster.session.DeltaManager  - Manager
[/TEST], requesting session state from 
org.apache.catalina.cluster.mcast.McastMember
[tcp://XXX.XXX.XXX.XXX:4001,XXX.XXX.XXX.,4001, alive=14436991]. This 
operation will timeout if no session state has been received within 60 seconds
[main] ERROR org.apache.catalina.cluster.session.DeltaManager  - Manager
[/TEST], No session state received, timing out.
org.apache.jk.common.ChannelSocket init


And the trace log in the node that remains alive:

org.apache.catalina.cluster.tcp.SimpleTcpCluster memberDisappeared
INFO: Received member disappeared:org.apache.catalina.cluster.mcast.McastMember
[tcp://YYY.YYY.YYY.YYY:4001,YYY.YYY.YYY.YYY,4001, alive=6147693]
org.apache.catalina.cluster.tcp.SimpleTcpCluster memberAdded
INFO: Replication member added:org.apache.catalina.cluster.mcast.McastMember
[tcp://YYY.YYY.YYY.YYY:4001,YYY.YYY.YYY.YYY,4001, alive=2]
[org.apache.catalina.cluster.tcp.TcpReplicationThread[3]] ERROR 
org.apache.catalina.cluster.session.DeltaManager  - Unable to receive message 
through TCP channel
java.lang.NullPointerException
at java.io.ObjectOutputStream$BlockDataOutputStream.getUTFLength
(ObjectOutputStream.java:1898)
at java.io.ObjectOutputStream$BlockDataOutputStream.writeUTF
(ObjectOutputStream.java:1769)
at java.io.ObjectOutputStream.writeUTF(ObjectOutputStream.java:787)
at 
org.apache.catalina.cluster.session.SerializablePrincipal.writePrincipal
(SerializablePrincipal.java:180)
at org.apache.catalina.cluster.session.DeltaSession.writeObject
(DeltaSession.java:1457)
at org.apache.catalina.cluster.session.DeltaSession.writeObjectData
(DeltaSession.java:930)
at org.apache.catalina.cluster.session.DeltaManager.doUnload
(DeltaManager.java:539)
at org.apache.catalina.cluster.session.DeltaManager.messageReceived
(DeltaManager.java:854)
at org.apache.catalina.cluster.session.DeltaManager.messageDataReceived
(DeltaManager.java:762)
at org.apache.catalina.cluster.tcp.SimpleTcpCluster.messageDataReceived
(SimpleTcpCluster.java:576)
at org.apache.catalina.cluster.io.ObjectReader.execute
(ObjectReader.java:70)
at org.apache.catalina.cluster.tcp.TcpReplicationThread.drainChannel
(TcpReplicationThread.java:129)
at org.apache.catalina.cluster.tcp.TcpReplicationThread.run
(TcpReplicationThread.java:67)

I saw another bug similar to this one: 32280, but it finishes without a clear 
solution.

Thanks in advance.

-- 
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 34647] - Tomcat cluster - Unable to receive message through TCP Channel

2005-04-27 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=34647.
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=34647


[EMAIL PROTECTED] changed:

   What|Removed |Added

Summary|Tomcat cluster - Unabel to |Tomcat cluster - Unable to
   |receive message through TCP |receive message through TCP
   |Channel|Channel




-- 
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 34647] - Tomcat cluster - Unable to receive message through TCP Channel

2005-04-27 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=34647.
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=34647





--- Additional Comments From [EMAIL PROTECTED]  2005-04-27 17:53 ---
The strack trace indicates that you have a principal (you are logged in) but 
the login name is null. Could you give us a small test case if you can create 
one and reproduce the error?

-- 
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 33837] - Directive typo in error message and documentation suggestion

2005-04-13 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=33837.
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=33837


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-04-13 13:45 ---
This has been fixed in 1.2.10

-- 
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 34273] New: - Better error message for inexisting bootstrapping commands

2005-04-02 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=34273.
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=34273

   Summary: Better error message for inexisting bootstrapping
commands
   Product: Tomcat 5
   Version: Nightly Build
  Platform: Other
OS/Version: All
Status: NEW
  Severity: trivial
  Priority: P2
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


patch follows next

-- 
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 34273] - Better error message for inexisting bootstrapping commands

2005-04-02 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=34273.
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=34273





--- Additional Comments From [EMAIL PROTECTED]  2005-04-02 19:48 ---
Created an attachment (id=14609)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=14609action=view)
Bootstrap.java.patch


-- 
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 34220] - provide better error message when server.xml is not found

2005-03-30 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=34220.
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=34220


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-30 19:04 ---
Patch (slightly modified to handle the case when file is null without throwing
an NPE) applied.  Thanks for contributing ;)

-- 
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 34220] New: - provide better error message when server.xml is not found

2005-03-29 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=34220.
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=34220

   Summary: provide better error message when server.xml is not
found
   Product: Tomcat 5
   Version: Nightly Build
  Platform: Other
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


suggestion: give the full path of the file sought

-- 
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 34220] - provide better error message when server.xml is not found

2005-03-29 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=34220.
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=34220





--- Additional Comments From [EMAIL PROTECTED]  2005-03-29 13:55 ---
Created an attachment (id=14583)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=14583action=view)
Catalina.java.patch


-- 
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 33837] - Directive typo in error message and documentation suggestion

2005-03-24 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=33837.
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=33837





--- Additional Comments From [EMAIL PROTECTED]  2005-03-23 07:15 ---
Along similar lines, it would be helpful if the workers.properties 
documentation mentioned how 
`continuation lines' were handled.  The combination of termination lines with a 
'\' character, and 
indenting subsequent lines appears to work.  It would nice to give specific 
mention to this in the 
documentation.

-- 
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 32741] - committed spelled wrong in INFO message

2005-03-24 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=32741.
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=32741


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-25 05:02 ---
Fixed, thank you.

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



Message to clint@ntpage.com requires Authorization

2005-03-23 Thread clint
This is an auto-response from my OkMyMail system.  SPAM to my mailbox has been 
out of control, so I am trying this new system.

In order to send mail to me, you must request that I approve receiving mail 
from you.  It is very quick and you will only have to do this ONCE - then you 
will be Authorized

To request Authorization click here:
http://www.inventiveweb.com/okmymail.asp?id=clint,clintspam,none,ntpage.com,B0006712946

The original e-mail that you sent will automatically be forwarded.  You do not 
need to re-send your message.

Thank you.

[EMAIL PROTECTED]


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



DO NOT REPLY [Bug 34110] - The message SEVERE: Error listenerStart should be more explicit

2005-03-22 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=34110.
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=34110


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Resolution||INVALID
 Status|NEW |RESOLVED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-22 11:32 ---
Enough is logged already, including a stack trace (I verified this).

I have tweaked the logging a little bit more.

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



Message to clint@ntpage.com requires Authorization

2005-03-22 Thread clint
This is an auto-response from my OkMyMail system.  SPAM to my mailbox has been 
out of control, so I am trying this new system.

In order to send mail to me, you must request that I approve receiving mail 
from you.  It is very quick and you will only have to do this ONCE - then you 
will be Authorized

To request Authorization click here:
http://www.inventiveweb.com/okmymail.asp?id=clint,clintspam,none,ntpage.com,B0006704700

The original e-mail that you sent will automatically be forwarded.  You do not 
need to re-send your message.

Thank you.

[EMAIL PROTECTED]


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



DO NOT REPLY [Bug 34110] New: - The message SEVERE: Error listenerStart should be more explicit

2005-03-21 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=34110.
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=34110

   Summary: The message SEVERE: Error listenerStart should be more
explicit
   Product: Tomcat 5
   Version: 5.5.7
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


About 50 times during the last 2 years developing programs with tomcat I have
had the message 

SEVERE: Error listenerStart
21-Mar-2005 11:38:17 org.apache.catalina.core.StandardContext start
SEVERE: Context startup failed due to previous errors

I usually manage to find out that its a configuration problem of mine
but the message isnt enough information to go on. It has caused me hours and
hours of hunting for the problem.

I consider that it is a bug, as the message should be more explicit. 

... a stacktrace would be nice.

I dont think its necessary to attach more information about my setup as I have
seen the message on 20 different web applications of mine. With tomcat versions
from 4 to 5.5 I always hoped it would be fixed in the next release.

Thanks in advance

Andy Bailey

The latest example follows:


21-Mar-2005 11:38:12 org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
21-Mar-2005 11:38:12 org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8443
21-Mar-2005 11:38:12 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1402 ms
21-Mar-2005 11:38:13 org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
21-Mar-2005 11:38:13 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.7
21-Mar-2005 11:38:13 org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
21-Mar-2005 11:38:13 org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
21-Mar-2005 11:38:13 org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive pse.war
21-Mar-2005 11:38:13 org.apache.catalina.startup.ContextConfig 
applicationWebConfig
INFO: Missing application web.xml, using defaults only
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/pse]
21-Mar-2005 11:38:13 org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive 
acegi-security-sample-contacts-filter.war
[WARN,Configurator,main] No configuration found. Configuring ehcache from
ehcache-failsafe.xml found in the classpath:
jar:file:/opt/tomcat2/webapps/acegi-security-sample-contacts-filter/WEB-INF/lib/ehcache-1.1.jar!/ehcache-failsafe.xml
21-Mar-2005 11:38:17 org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
21-Mar-2005 11:38:17 org.apache.catalina.core.StandardContext start
SEVERE: Context startup failed due to previous errors
21-Mar-2005 11:38:17 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
21-Mar-2005 11:38:17 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8443
21-Mar-2005 11:38:17 org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
21-Mar-2005 11:38:17 org.apache.catalina.startup.Catalina start
INFO: Server startup in 4615 ms

-- 
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 34110] - The message SEVERE: Error listenerStart should be more explicit

2005-03-21 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=34110.
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=34110





--- Additional Comments From [EMAIL PROTECTED]  2005-03-21 22:45 ---
It did not get fixed because I do not think there's a bug in the first place.
It's logged to the webapp's servlet context logger, as error. Why don't you see 
it ?

Look in the source:

boolean ok = true;
for (int i = 0; i  results.length; i++) {
if (log.isDebugEnabled())
log.debug( Configuring event listener class ' +
listeners[i] + ');
try {
Class clazz = loader.loadClass(listeners[i]);
results[i] = clazz.newInstance();
} catch (Throwable t) {
getServletContext().log
(sm.getString(standardContext.applicationListener,
  listeners[i]), t);
ok = false;
}
}
if (!ok) {
log.error(sm.getString(standardContext.applicationSkipped));
return (false);
}


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



Regarding your message to Epocware/Paragon Software

2005-03-15 Thread Epocware/Paragon Software Group

 

English (German and Russian are below) 
___

Dear Customer,

This is a response from the Epocware/Paragon Software Group. Please read it 
carefully.

Thank you very much for contacting our Customer Support Service!
Your e-mail message has been successfully received.

You can find both technical, as well as general, product information in the 
following areas:

1)  Useful links. Here you can download Trial/Demo versions of our 
software or order commercial versions of our products using credit cards or 
other payments methods:

Dictionaries:
http://www.epocware.com/technologies/Dictionaries.html
Localization:
http://www.epocware.com/technologies/Localization.html
Games:
http://www.epocware.com/technologies/Games.html
Utilities:
http://www.epocware.com/technologies/Utilities.html
News:
http://www.epocware.com/company/news.html

2)  Your Getting Started Manual
3)  Help files that were installed with the product
 
If you paid for software online and do not know, how to get your purchase, 
please, check your
e-mail box.  There must be a message from e-care System of Paragon Software 
with a link, password and login, where you can download a program.

If you have questions that were not answered in our Support Knowledge Base or 
if you need further assistance of our Support Team please REPLY TO this e-mail 
message and repeat your request ONCE AGAIN. Our Customer Support representative 
will gladly assist you. Please DO NOT delete the message history and DO NOT 
change the subject of the message.

Please be patient, your request will be processed within 2-3 BUSINESS days and 
will be replied. 
Please have in mind that our support service does not reply any messages on 
weekends.

Should you have any technical problems with installation or using our products, 
please contact our Technical Support Team at [EMAIL PROTECTED]

If you have questions concerning the procedure of software purchasing, your 
products registration in e-Care System or getting the programs purchased, 
please contact our Sales Support Team at
+7 095 789-6364 ext. 306 or 281
+7 095 789-6365 ext. 306 or 281

Our phone support hours are Monday-Friday
11.00-19.00 GMT+3.

e-mail: [EMAIL PROTECTED]
Web - http://www.epocware.com

_Russian ()_

 ,

   Epocware/Paragon Software. 
, .

 ! 

  ,  
 :

 1)   web-:

:
http://www.epocware.com/ru/technologies/Dictionaries.html
 ():
http://www.epocware.com/ru/technologies/Localization.html
:
http://www.epocware.com/ru/technologies/Games.html 
:
http://www.epocware.com/ru/technologies/Utilities.html
:
http://www.epocware.com/ru/company/news.html

 2)   ,;

 3).

   

 (   ) , ,   . 
   
 .  
(  ).

  -,   , 
,, . 

Paragon Software,   ,   ,   
.


   ,  
 , , 
.  
. 
   2-3  .
 ,
 
   ( 
,   ).

   
,  
 :
[EMAIL PROTECTED]

 ,
 e-Care,  
:
 (095) 789-6364 . 306  281
 (095) 789-6365 . 306  281

, 
 11.00  19.00 ( )

e-mail: [EMAIL PROTECTED]
Web - http://www.epocware.com

 !

   ,  
  
. 

 !


_German_

Sehr geehrte Kundin, Sehr geehrter Kunde,
 

Dies ist ein Nachricht vom Paragon Software Support-Service.
Vielen Dank fr Ihre Mail an den Kundenservice!

Sie finden zu jeder Zeit technische und allgemeine Informationen auf den 
folgenden Seiten:

1)  Die Paragon Software Wissensdatenbank
http://support.penreader.com

Hier finden Sie die FAQ's und Informationen ber Produktregistrierungen und 
Bestellmglichkeiten

2) Hilfreiche Links
Hier knnen Sie Trial- und Demoversionen unserer Produkte herunterladen oder sie
direkt erwerben:

Wrterbcher:
http://www.epocware.com/de/technologies/Dictionaries.html

Lokalisierungen:
http://www.epocware.com/de/technologies/Localization.html

Spiele:
http://www.epocware.com/de/technologies/Games.html

Utilities:
http://www.epocware.com/de/technologies/Utilities.html

Newsletter:
http://www.epocware.com/de/company/news.html

   3)  Einsteigerhandbuch

   4)  In den Produkten zur Verfgung gestellte Onlinehilfen

Falls Sie Software online erworben haben und nicht wissen wie Sie an Ihr
Produkt kommen, prfen Sie bitte zuerst Ihre eingegangenen E-mails.
Sie sollten eine Nachricht vom Paragon Software E-Care System erhalten haben,
in dem Ihnen der Link, Passwort und Login fr den Download mitgeteilt wird.

Sollten Sie die Antwort auf Ihre Fragen in unserer Wissensdatenbank
nicht gefunden haben oder weitere Hilfe brauchen, ANTWORTEN Sie auf
diese Email und wiederholen Sie Ihre Anfrage noch einmal.  Unser
Support-Dienst steht Ihnen gerne zur Verfgung. Bitte loeschen Sie
NICNT die Email-History und aendern Sie NICHT den Text in der Betreff-Zeile der 
Email

DO NOT REPLY [Bug 21887] - Incorrect taglib.tld error message in catalina.log

2005-03-10 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=21887.
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=21887


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2005-03-10 22:23 ---
This is by design. Use of an invalid element will result in a an error message
of the form:

Element type invalid-element must be declared.

It is not possible to reliably determine the correct element name if an invalid
one is used. Hence the correct name can not be included in the error message.

-- 
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 33837] New: - Directive typo in error message and documentation suggestion

2005-03-03 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=33837.
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=33837

   Summary: Directive typo in error message and documentation
suggestion
   Product: Tomcat 5
   Version: Unknown
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P1
 Component: Native:JK
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Line 1891 of jk/native/apache-1.3/mod_jk.c mispells JkWorkersFile.

I first was scratching my head over the whole JkWorkersFile vs. JkWorkerFile
thing until I dug further into the source that led to my real problem: you can't
have spaces on either side of the '=' in workers.properties.  Maybe an
additional error message for file not found vs. no properties found would be
helpful.  Being an admin and not a developer, this is more of a big deal because
most config files aren't so stringent about spaces.  I spent way too long on
that one!  I hope documentation could be update to reflect it, because it wasn't
clear from my reading... the whole properties and XML usage to configure
software is bad enough for us admins :)

Thanks for your time and great software.

dpk

-- 
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 33837] - Directive typo in error message and documentation suggestion

2005-03-03 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=33837.
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=33837


[EMAIL PROTECTED] changed:

   What|Removed |Added

 OS/Version|Linux   |All




-- 
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 26558] - Misleading error message from setclasspath.sh if Java SDK not installed

2005-02-15 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=26558.
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=26558


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-02-15 23:18 ---
A modified version of your patch has been applied to CVS.

-- 
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: Secure SMTP Message

2005-01-21 Thread amyroh

You got a new message.



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

DO NOT REPLY [Bug 32741] - committed spelled wrong in INFO message

2004-12-31 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=32741.
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=32741





--- Additional Comments From [EMAIL PROTECTED]  2004-12-31 13:51 ---
Created an attachment (id=13870)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=13870action=view)
Patch to fix the spelling of commited.

I'd think it would make it easier.
Sort of like finding articles on the 'referer' header or the 'usr' directory.
;)
Anyway, here's the patch

-- 
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 30168] - warning message needed when workers2.properties not found

2004-12-22 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=30168.
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=30168


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2004-12-22 21:08 ---
As of November 15, 2004, JK2 is no longer supported. All bugs related to JK2 
will be marked as WONTFIX. In its place, some of its features have been 
backported to jk1. Most of those features will be seen in 1.2.7, which is 
slated for release on November 30th, 2004.

Another alternative is the ajp addition to mod_proxy which will be part of 
apache 2.

For more information on the Tomat connectors docs at
http://jakarta.apache.org/tomcat/connectors-doc/


-- 
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 21129] - Error message : The Parameter is incorrect when doing multipart requests (fileupload)

2004-12-22 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=21129.
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=21129


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 OS/Version||All
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2004-12-22 21:43 ---
As of November 15, 2004, JK2 is no longer supported. All bugs related to JK2 
will be marked as WONTFIX. In its place, some of its features have been 
backported to jk1. Most of those features will be seen in 1.2.7, which is 
slated for release on November 30th, 2004.

Another alternative is the ajp addition to mod_proxy which will be part of 
apache 2.

For more information on the Tomat connectors docs at
http://jakarta.apache.org/tomcat/connectors-doc/


-- 
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 23811] - Erratic The servlet container is temporary unavailable or being upgraded message

2004-12-22 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=23811.
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=23811


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2004-12-22 21:49 ---
As of November 15, 2004, JK2 is no longer supported. All bugs related to JK2 
will be marked as WONTFIX. In its place, some of its features have been 
backported to jk1. Most of those features will be seen in 1.2.7, which is 
slated for release on November 30th, 2004.

Another alternative is the ajp addition to mod_proxy which will be part of 
apache 2.

For more information on the Tomat connectors docs at
http://jakarta.apache.org/tomcat/connectors-doc/



-- 
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 32741] New: - committed spelled wrong in INFO message

2004-12-16 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=32741.
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=32741

   Summary: committed spelled wrong in INFO message
   Product: Tomcat 5
   Version: 5.0.28
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Connector:Coyote
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


The following was written to my catalina.out log many times. That committed
was spelled wrong made it a little harder to research the problem on google.

Dec 15, 2004 5:53:12 PM org.apache.jk.server.JkCoyoteHandler action
INFO: Response already commited

The error message comes from this file:
jakarta-tomcat-connectors/jk/java/org/apache/jk/server/JkCoyoteHandler.java

-- 
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 32023] - CGIServlet fails to handle post message with multipart/form data

2004-11-19 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=32023.
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=32023


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Additional Comments From [EMAIL PROTECTED]  2004-11-19 15:44 ---
Done for Tomcat 5.5.5.

-- 
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 32023] - CGIServlet fails to handle post message with multipart/form data

2004-11-19 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=32023.
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=32023


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2004-11-19 15:51 ---
And for 5.0.30.

-- 
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 31991] - Incomplete error message on startup (v4.1.31)

2004-11-15 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=31991.
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=31991


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Priority||P1
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2004-11-15 22:47 ---
I have just double checked the code and if the debug level for the context was 
set to anything other than 0, you would see a whole stack of messages before 
the error message you are currently seeing. On this basis I think this is a 
logging configuration issue rather than a bug.

Since bugzilla is not a support forum, I would suggest that the tomcat-user 
mailing list is the best place to follow this up (I'd suggest posting your 
server.xml). You will also recieve a much faster response.

-- 
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 32028] - CGIServlet fails to handle post message with multipart/form data

2004-11-03 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=32028.
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=32028

CGIServlet fails to handle post message with multipart/form data

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2004-11-03 15:20 ---


*** This bug has been marked as a duplicate of 32023 ***

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



DO NOT REPLY [Bug 32023] - CGIServlet fails to handle post message with multipart/form data

2004-11-03 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=32023.
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=32023

CGIServlet fails to handle post message with multipart/form data





--- Additional Comments From [EMAIL PROTECTED]  2004-11-03 15:20 ---
*** Bug 32028 has been marked as a duplicate of this bug. ***

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



DO NOT REPLY [Bug 32023] New: - CGIServlet fails to handle post message with multipart/form data

2004-11-02 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=32023.
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=32023

CGIServlet fails to handle post message with multipart/form data

   Summary: CGIServlet fails to handle post message with
multipart/form data
   Product: Tomcat 5
   Version: 5.0.0
  Platform: Other
OS/Version: Windows XP
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Servlets:CGI
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Following error message appears in the log.
INFO: cgi: runCGI (stderr):CGI.pm: Server closed socket during multipart read 
(client aborted?).

The problem is that when creating the inputstream for cgi component there is 
only one single 'read' on the ServletInputStream, in reasonably large uploads 
this will not drain the buffer.

I have a pathch ready and it looks like this:

diff -u -r1.27 CGIServlet.java
--- CGIServlet.java 14 Oct 2004 08:14:47 -  1.27
+++ CGIServlet.java 2 Nov 2004 15:42:25 -
@@ -1691,7 +1691,12 @@
 ByteArrayOutputStream contentStream = null;
 if(!.equals(sContentLength)) {
 byte[] content = new byte[Integer.parseInt(sContentLength)];
-int lenRead = stdin.read(content);
+int lenRead = 0;
+do {
+int partRead = stdin.read(
+content,lenRead,content.length-lenRead);
+lenRead += partRead;
+} while (lenRead  0  lenRead  content.length);
 contentStream = new ByteArrayOutputStream(
 Integer.parseInt(sContentLength));
 if (POST.equals(env.get(REQUEST_METHOD))) {

Hope someone can commit it to cvs repository.

Maybe there should be an initial parameter for the servlet also that restricts 
maximum size of the upload?


--
Antti

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



DO NOT REPLY [Bug 32028] New: - CGIServlet fails to handle post message with multipart/form data

2004-11-02 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=32028.
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=32028

CGIServlet fails to handle post message with multipart/form data

   Summary: CGIServlet fails to handle post message with
multipart/form data
   Product: Tomcat 5
   Version: 5.0.0
  Platform: Other
OS/Version: Windows XP
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Servlets:CGI
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Following error message appears in the log.
INFO: cgi: runCGI (stderr):CGI.pm: Server closed socket during multipart read 
(client aborted?).

The problem is that when creating the inputstream for cgi component there is 
only one single 'read' on the ServletInputStream, in reasonably large uploads 
this will not drain the buffer.

I have a pathch ready and it looks like this:

diff -u -r1.27 CGIServlet.java
--- CGIServlet.java 14 Oct 2004 08:14:47 -  1.27
+++ CGIServlet.java 2 Nov 2004 15:42:25 -
@@ -1691,7 +1691,12 @@
 ByteArrayOutputStream contentStream = null;
 if(!.equals(sContentLength)) {
 byte[] content = new byte[Integer.parseInt(sContentLength)];
-int lenRead = stdin.read(content);
+int lenRead = 0;
+do {
+int partRead = stdin.read(
+content,lenRead,content.length-lenRead);
+lenRead += partRead;
+} while (lenRead  0  lenRead  content.length);
 contentStream = new ByteArrayOutputStream(
 Integer.parseInt(sContentLength));
 if (POST.equals(env.get(REQUEST_METHOD))) {

Hope someone can commit it to cvs repository.

Maybe there should be an initial parameter for the servlet also that restricts 
maximum size of the upload?


--
Antti

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



DO NOT REPLY [Bug 31991] New: - Incomplete error message on startup (v4.1.31)

2004-10-31 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=31991.
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=31991

Incomplete error message on startup (v4.1.31)

   Summary: Incomplete error message on startup (v4.1.31)
   Product: Tomcat 4
   Version: 4.1.30
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I have labeled this bug as occurring on version 4.1.30, but it is actually for 
4.1.31 (there is no 31 in the drop down list).  I do not see this bug with 
v4.1.30.

I tried upgrading my tomcat installation from 4.1.30 to 4.1.31 and am seeing 
an error message stating LifecycleException:  Context startup failed due to 
previous errors.  I changed every debug level in my server.xml file to 99, 
but am still only seeing this error that refers to an earlier error, but the 
earlier error is not shown.  This problem is making it impossible for me to 
determine what the actual underlying error is.  Stack trace below.

ServerLifecycleListener: Creating MBean for Manager 
[EMAIL PROTECTED]
Catalina.start: LifecycleException:  Context startup failed due to previous 
errors
LifecycleException:  Context startup failed due to previous errors
at org.apache.catalina.core.StandardContext.start
(StandardContext.java:3578)
at org.apache.catalina.core.ContainerBase.start
(ContainerBase.java:1141)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:707)
at org.apache.catalina.core.ContainerBase.start
(ContainerBase.java:1141)
at org.apache.catalina.core.StandardEngine.start
(StandardEngine.java:316)
at org.apache.catalina.core.StandardService.start
(StandardService.java:450)
at org.apache.catalina.core.StandardServer.start
(StandardServer.java:2143)
at org.apache.catalina.startup.Catalina.start(Catalina.java:463)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:350)
at org.apache.catalina.startup.Catalina.process(Catalina.java:129)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:156)
ServerLifecycleListener: Destroying MBean for ContextResource ContextResource
[name=UserDatabase, description=User database that can be updated and saved, 
type=org.apache.catalina.UserDatabase, auth=Container, scope=Shareable]

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



DO NOT REPLY [Bug 31991] - Incomplete error message on startup (v4.1.31)

2004-10-31 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=31991.
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=31991

Incomplete error message on startup (v4.1.31)





--- Additional Comments From [EMAIL PROTECTED]  2004-10-31 06:12 ---
Created an attachment (id=13283)
Full log of trying to start tomcat v4.1.31

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



DO NOT REPLY [Bug 31991] - Incomplete error message on startup (v4.1.31)

2004-10-31 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=31991.
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=31991

Incomplete error message on startup (v4.1.31)





--- Additional Comments From [EMAIL PROTECTED]  2004-10-31 06:13 ---
Created an attachment (id=13284)
A successful start of tomcat v4.1.30

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



DO NOT REPLY [Bug 31991] - Incomplete error message on startup (v4.1.31)

2004-10-31 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=31991.
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=31991

Incomplete error message on startup (v4.1.31)





--- Additional Comments From [EMAIL PROTECTED]  2004-10-31 10:18 ---
How did you upgrade? Does a clean 4.1.31 install work

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



DO NOT REPLY [Bug 31991] - Incomplete error message on startup (v4.1.31)

2004-10-31 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=31991.
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=31991

Incomplete error message on startup (v4.1.31)





--- Additional Comments From [EMAIL PROTECTED]  2004-10-31 18:02 ---
I upgrade by changing my soft link (CATALINA_HOME=/usr/local/tomcat) to point 
to the v4.1.31 directory.  I have upgraded this way many times in the past.  A 
strange thing is that I was able to upgrade one of my tomcat installations 
(ratemyprofessors.com) to v4.1.31 with no problem, but the other installation 
(ratemds.com) has this startup error.  The real bug here seems to be logging-
related: the underlying error is not being logged, so I cannot identify and 
fix it.

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



DO NOT REPLY [Bug 31624] New: - Incomplete error message: java.util.zip.ZipException: No such file or directory

2004-10-10 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=31624.
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=31624

Incomplete error message: java.util.zip.ZipException: No such file or directory

   Summary: Incomplete error message: java.util.zip.ZipException: No
such file or directory
   Product: Tomcat 5
   Version: 5.0.27
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


On startup, tomcat bombs out like so:

Bootstrap: Class loader creation threw exception
java.lang.IllegalArgumentException: addRepositoryInternal
at
org.apache.catalina.loader.StandardClassLoader.addRepositoryInternal(StandardClassLoader.java:957)
at
org.apache.catalina.loader.StandardClassLoader.init(StandardClassLoader.java:153)
at
org.apache.catalina.startup.ClassLoaderFactory.createClassLoader(ClassLoaderFactory.java:189)
at
org.apache.catalina.startup.Bootstrap.createClassLoader(Bootstrap.java:160)
at
org.apache.catalina.startup.Bootstrap.initClassLoaders(Bootstrap.java:104)
at org.apache.catalina.startup.Bootstrap.init(Bootstrap.java:193)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:399)
Caused by: java.util.zip.ZipException: No such file or directory
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.init(ZipFile.java:112)
at java.util.jar.JarFile.init(JarFile.java:127)
at java.util.jar.JarFile.init(JarFile.java:65)
at
org.apache.catalina.loader.StandardClassLoader.addRepositoryInternal(StandardClassLoader.java:944)
... 6 more

The reason for the error is a missing jar file.

Of course the mystery remains as to WHICH jar file, because the error message
above neglects to mention which jar file.

This leaves the user with the following options:

- Spend hours randomly shooting in the dark trying to find which jar is missing
- Spend hours setting up tomcat in a debugging environment to set a breakpoint
so that it can be seen which jar is missing.

The fix: Include the name of the jar file in the error message.

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



DO NOT REPLY [Bug 31624] - Incomplete error message: java.util.zip.ZipException: No such file or directory

2004-10-10 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=31624.
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=31624

Incomplete error message: java.util.zip.ZipException: No such file or directory

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-10-10 23:07 ---
This was already fixed for 5.0.29.

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



DO NOT REPLY [Bug 31549] New: - Log message does not tell which class it tried to load when loading fails because webapp is stopped

2004-10-05 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=31549.
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=31549

Log message does not tell which class it tried to load when loading fails because 
webapp is stopped

   Summary: Log message does not tell which class it tried to load
when loading fails because webapp is stopped
   Product: Tomcat 5
   Version: 5.0.28
  Platform: All
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


When the WebappClassLoader tries to load a class and the webapp it belongs to is
already shut down, it outputs a diffuse warning that it could not a class,
without mentioning the name of the class.

I would suggest to change the following:
*in org/apache/catalina/loader/WebappClassLoader.java:
  * change in loadClass(String name, boolean resolve):
if (!started) {
log.info(sm.getString(webappClassLoader.stopped));
throw new ThreadDeath();
}
  to
if (!started) {
log.info(sm.getString(webappClassLoader.stopped), name);
throw new ThreadDeath();
}

  * change in findResourceInternal(String name, String path):
if (!started) {
log.info(sm.getString(webappClassLoader.stopped));
return null;
}
  to
if (!started) {
log.info(sm.getString(webappClassLoader.stopped), name);
return null;
}
*in org/apache/catalina/loader/WebappClassLoader.java:
  * change
webappClassLoader.stopped=Illegal access: this web application instance has been
stopped already (the eventual following stack trace is caused by an error thrown
for debugging purposes as well as to attempt to terminate the thread which
caused the illegal access, and has no functional impact)
  to
webappClassLoader.stopped=Illegal access: this web application instance has been
stopped already. Could not load {0}. The eventual following stack trace is
caused by an error thrown for debugging purposes as well as to attempt to
terminate the thread which caused the illegal access, and has no functional impact.

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



DO NOT REPLY [Bug 31549] - Log message does not tell which class it tried to load when loading fails because webapp is stopped

2004-10-05 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=31549.
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=31549

Log message does not tell which class it tried to load when loading fails because 
webapp is stopped

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



--- Additional Comments From [EMAIL PROTECTED]  2004-10-05 16:32 ---
Done for Tomcat 5.0, doing 5.5 next.

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



DO NOT REPLY [Bug 31549] - Log message does not tell which class it tried to load when loading fails because webapp is stopped

2004-10-05 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=31549.
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=31549

Log message does not tell which class it tried to load when loading fails because 
webapp is stopped

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-10-05 16:38 ---
Done for 5.5 also.

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



DO NOT REPLY [Bug 31292] - provide better error message for Unable to find setter method for attribute: name

2004-09-21 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=31292.
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=31292

provide better error message for Unable to find setter method for attribute: name

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||WORKSFORME



--- Additional Comments From [EMAIL PROTECTED]  2004-09-21 16:43 ---
So, I'm closing this item.

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



DO NOT REPLY [Bug 31292] - provide better error message for Unable to find setter method for attribute: name

2004-09-20 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=31292.
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=31292

provide better error message for Unable to find setter method for attribute: name

[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Normal  |Enhancement
   Priority|Other   |Low



--- Additional Comments From [EMAIL PROTECTED]  2004-09-20 18:36 ---
What version are you using?  Not 5.0.0 I imagine.  Anyways, it looks like a 
better message should already be coming at you: the error code 
of jsp.error.unable.to_find_method is correctly passed to ErrorDispatcher, 
which would look it up using the Localizer, and in LocalStrings.properties, the 
message is
jsp.error.unable.to_find_method=Unable to find setter method for attribute: {0}

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



DO NOT REPLY [Bug 31292] - provide better error message for Unable to find setter method for attribute: name

2004-09-20 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=31292.
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=31292

provide better error message for Unable to find setter method for attribute: name

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
Version|5.0.0   |5.0.24



--- Additional Comments From [EMAIL PROTECTED]  2004-09-20 20:09 ---
no, I am using 5.0.24 or even 5.0.27 and you are right the error message is the
one you cite, just in the pre 1.2.dtd of struts, a form object had an attribute
named name.

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



DO NOT REPLY [Bug 31292] New: - provide better error message for Unable to find setter method for attribute: name

2004-09-19 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=31292.
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=31292

provide better error message for Unable to find setter method for attribute: name

   Summary: provide better error message for Unable to find setter
method for attribute: name
   Product: Tomcat 5
   Version: 5.0.0
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


as per Bug 31291, there appears to be a problem with my struts versions

it would be great if in 
org.apache.jasper.compiler.Generator$GenerateVisitor.evaluateAttribute(Generator.java:2674),
a better error message could be thrown: the tag is
html:form action=login.do name=loginForm
type=com.privasphere.privalope.form.LoginForm focus=login

so why not say:
Unable to find setter method for attribute: name of class
com.privasphere.privalope.form.LoginForm

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



DO NOT REPLY [Bug 30309] - Clarify error message

2004-09-02 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=30309.
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=30309

Clarify error message

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-09-02 18:38 ---
I guess not ;)

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



RE: Japanese message updates and one bug fix in Tomcat 5

2004-08-31 Thread Shapira, Yoav

Hi,
I've applied your patches on the TOMCAT_5_0 branch and Amy Roh has done
so in CVS HEAD.  Thanks for submitting them ;)

Yoav Shapira
Millennium Research Informatics


-Original Message-
From: Kazuhiro Kazama [mailto:[EMAIL PROTECTED]
Sent: Monday, August 30, 2004 2:26 AM
To: [EMAIL PROTECTED]
Subject: Japanese message updates and one bug fix in Tomcat 5

This mail includes Japanese message updates for Tomcat 5. And this
patch resolves the problem which you can't deploy tomcat by ant in
Japanese environment.

Thanks,

Kazuhiro Kazama ([EMAIL PROTECTED])NTT Network Innovation
Laboratories



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 30409] - Bad error message when taglib shortname is null

2004-08-31 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=30409.
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=30409

Bad error message when taglib shortname is null

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-08-31 20:43 ---
The code quoted as the source of this issue is outside the control of the 
tomcat team as it is part of the jakarta-servletapi-4 module. Note that 
similar code exisits in the jakarta-servletapi-5 module.

You will need to contact the servlet spec team regarding this issue:
[EMAIL PROTECTED]

I am marking this as INVALID as it is outside the scope of the tomcat source 
code, not because the root cause of the issue is invalid.

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



Japanese message updates and one bug fix in Tomcat 5

2004-08-30 Thread Kazuhiro Kazama
This mail includes Japanese message updates for Tomcat 5. And this
patch resolves the problem which you can't deploy tomcat by ant in
Japanese environment.

Thanks,

Kazuhiro Kazama ([EMAIL PROTECTED]) NTT Network Innovation Laboratories
Index: jasper2/src/share/org/apache/jasper/resources/messages_ja.properties
===
RCS file: 
/home/cvspublic/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/resources/messages_ja.properties,v
retrieving revision 1.53
diff -c -u -r1.53 messages_ja.properties
--- jasper2/src/share/org/apache/jasper/resources/messages_ja.properties25 May 
2004 21:28:40 -  1.53
+++ jasper2/src/share/org/apache/jasper/resources/messages_ja.properties30 Aug 
2004 06:00:08 -
@@ -223,6 +223,7 @@
 \-ieplugin clsid  Internet Explorer\u306eJava Plugin\u306eclassid\n\
 \-classpath path  
java.class.path\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u4e0a\u66f8\u304d\n\
 \-xpoweredBy
X-Powered-By\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u306e\u8ffd\u52a0\n\
+\-trimSpaces
\u30a2\u30af\u30b7\u30e7\u30f3\u3084\u6307\u793a\u5b50\u306e\u9593\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30c6\u30ad\u30b9\u30c8\u4e2d\u306e\u30b9\u30da\u30fc\u30b9\u3092\u524a\u9664\n\
 
 jspc.webxml.header=?xml version=1.0 encoding=ISO-8859-1?\n\
 \n\
@@ -396,4 +397,5 @@
 jsp.error.prefix.refined=\u30d7\u30ea\u30d5\u30a3\u30c3\u30af\u30b9 {0} 
\u304c\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u4e2d\u3067\u65e2\u306b {2} 
\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u306e\u3067 {1} 
\u306b\u518d\u5b9a\u7fa9\u3057\u307e\u3057\u305f
 jsp.error.nested_jsproot=\u5165\u308c\u5b50\u306b\u306a\u3063\u305f lt;jsp:rootgt; 
\u3067\u3059
 jsp.error.unbalanced.endtag=\u7d42\u4e86\u30bf\u30b0 \lt;/{0}\ 
\u306e\u5bfe\u5fdc\u304c\u53d6\u308c\u3066\u3044\u307e\u305b\u3093
-jsp.error.invalid.bean=
+jsp.error.invalid.bean=useBean\u306e\u30af\u30e9\u30b9\u5c5e\u6027 {0} 
\u306e\u5024\u304c\u7121\u52b9\u3067\u3059
+jsp.error.prefix.use_before_dcl=\u3053\u306e\u30bf\u30b0\u6307\u793a\u5b50\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d7\u30ea\u30d5\u30a3\u30c3\u30af\u30b9
 {0} \u306f\u3001\u3059\u3067\u306b\u30d5\u30a1\u30a4\u30eb {1} \u306e {2} 
\u884c\u76ee\u306e\u30a2\u30af\u30b7\u30e7\u30f3\u3067\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059
Index: http11/src/java/org/apache/coyote/http11/LocalStrings_ja.properties
===
RCS file: 
/home/cvspublic/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/LocalStrings_ja.properties,v
retrieving revision 1.3
diff -c -u -r1.3 LocalStrings_ja.properties
--- http11/src/java/org/apache/coyote/http11/LocalStrings_ja.properties 2 Sep 2003 
14:11:53 -   1.3
+++ http11/src/java/org/apache/coyote/http11/LocalStrings_ja.properties 30 Aug 2004 
06:00:03 -
@@ -10,7 +10,7 @@
 
 
http11protocol.endpoint.initerror=\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u3092\u521d\u671f\u5316\u4e2d\u306e\u30a8\u30e9\u30fc\u3067\u3059
 
http11protocol.endpoint.starterror=\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u3092\u8d77\u52d5\u4e2d\u306e\u30a8\u30e9\u30fc\u3067\u3059
-http11protocol.init=Coyote 
HTTP/1.1\u3092\u30dd\u30fc\u30c8{0}\u3067\u521d\u671f\u5316\u3057\u307e\u3059
+http11protocol.init=Coyote HTTP/1.1\u3092 {0} 
\u3067\u521d\u671f\u5316\u3057\u307e\u3059
 
http11protocol.proto.error=\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u8aad\u307f\u8fbc\u307f\u4e2d\u306e\u30a8\u30e9\u30fc\u3067\u3059\u304c\u3001\u7121\u8996\u3055\u308c\u307e\u3057\u305f
 
http11protocol.proto.ioexception.debug=\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u8aad\u307f\u8fbc\u307f\u4e2d\u306eIOException\u3067\u3059
 
http11protocol.proto.ioexception.info=\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u8aad\u307f\u8fbc\u307f\u4e2d\u306eIOException\u3067\u3059\u304c\u3001\u7121\u8996\u3055\u308c\u307e\u3057\u305f
@@ -18,7 +18,12 @@
 
http11protocol.proto.socketexception.info=\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u8aad\u307f\u8fbc\u307f\u4e2d\u306eSocketException\u3067\u3059\u304c\u3001\u7121\u8996\u3055\u308c\u307e\u3057\u305f
 http11protocol.setattribute=\u5c5e\u6027 {0}: {1}
 
http11protocol.socketfactory.initerror=\u30bd\u30b1\u30c3\u30c8\u30d5\u30a1\u30af\u30c8\u30ea\u3092\u521d\u671f\u5316\u4e2d\u306e\u30a8\u30e9\u30fc\u3067\u3059
-http11protocol.start=Coyote HTTP/1.1\u3092\u30dd\u30fc\u30c8 {0} 
\u3067\u8d77\u52d5\u3057\u307e\u3059
+http11protocol.start=Coyote HTTP/1.1\u3092 {0} \u3067\u8d77\u52d5\u3057\u307e\u3059
+http11protocol.stop=Coyote HTTP/1.1\u3092 {0} \u3067\u505c\u6b62\u3057\u307e\u3059
+http11protocol.pause=Coyote HTTP/1.1\u3092 {0} 
\u3067\u4e00\u6642\u505c\u6b62\u3057\u307e\u3059
+http11protocol.endpoint.pauseerror=\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u306e\u4e00\u6642\u505c\u6b62\u4e2d\u306e\u30a8\u30e9\u30fc\u3067\u3059
+http11protocol.resume=Coyote HTTP/1.1\u3092 {0} \u3067\u518d\u958b\u3057\u307e

RE: Tomcat Error Message

2004-08-04 Thread Schalk Neethling
Hey there all
I get the following line when running my servlet on Tomcat version 5.0.25:
java.lang.UnsupportedClassVersionError: 
org/volume4/searchEngine/lawSearch (Unsupported major.minor version 49.0)

What exactly does this mean and how do I go about fixing this? Thanks!
--
Kind Regards
Schalk Neethling
Web Developer.Designer.Programmer.President
Volume4.Development.Multimedia.Branding
emotionalize.conceptualize.visualize.realize
Tel: +27125468436
Fax: +27125468436
email:[EMAIL PROTECTED]
web: www.volume4.co.za
This message contains information that is considered to be sensitive or confidential 
and may not be forwarded or disclosed to any other party without the permission of the 
sender. If you received this message in error, please notify me immediately so that I 
can correct and delete the original email. Thank you.

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


DO NOT REPLY [Bug 30409] New: - Bad error message when taglib shortname is null

2004-07-30 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=30409.
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=30409

Bad error message when taglib shortname is null

   Summary: Bad error message when taglib shortname is null
   Product: Tomcat 4
   Version: 4.1.29
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Major
  Priority: Other
 Component: Jasper 2
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


This code:
public abstract class TagLibraryInfo {
...
public TagInfo getTag(String shortname) {

...

/* 190*/for (int i = 0; i  tags.length; i++)
/* 191*/if (tags[i].getTagName().equals(shortname))
/* 192*/return tags[i];
...
}
...
}

Causes an NPE if shortName is an empty element.  Thank god for the eclipse
sysdeo debugger!  The code should either check for null:

if(shortname == null || shortname.length()==0){
System.err(a tags name is null, please check your .tld);
return null;
}

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



DO NOT REPLY [Bug 30409] - Bad error message when taglib shortname is null

2004-07-30 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=30409.
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=30409

Bad error message when taglib shortname is null





--- Additional Comments From [EMAIL PROTECTED]  2004-07-30 14:26 ---
I'm not sure.  This test works without an error or an NPE:
public class Test {
  public static void main(String[] args) {
String shortname = null;
String[] tagFiles = new String[] { A, B, C };
for(int i = 0; i  tagFiles.length; i++) {
  if(tagFiles[i].equals(shortname)) {
System.out.println(found);
  }
}
System.out.println(Finished with no error.);
  }
}

The program finishes with no error.  

Of course, if tags[i].getTagName() is null, then an NPE would occur.

In addition, I suggest you try this against Tomcat 5: filing bugs that aren't 
showstopper or spec-related against Tomcat 4 is not recommended, as that branch 
is not actively developed.

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



DO NOT REPLY [Bug 30309] - Clarify error message

2004-07-28 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=30309.
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=30309

Clarify error message





--- Additional Comments From [EMAIL PROTECTED]  2004-07-28 16:07 ---
I can't reproduce this error.  Can you reproduce it on 5.0.27 and/or post the 
stack trace you're getting?  A test case (attach it as a WAR file to this 
Bugzilla issue) would also be good.

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



DO NOT REPLY [Bug 30309] New: - Clarify error message

2004-07-24 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=30309.
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=30309

Clarify error message

   Summary: Clarify error message
   Product: Tomcat 5
   Version: 5.0.19
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Getting an error message of:

java.lang.IllegalAccessException: Class org.apache.catalina.core.StandardWrapper
can not access a member of class class name goes here with modifiers 

   is very uninstructive. Do everyone and favour and modify this exception to read:

You have tried running a Servlet that did not have a public access modifier.
Please modify the servlet and try again.

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



DO NOT REPLY [Bug 30168] New: - warning message needed when workers2.properties not found

2004-07-17 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=30168.
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=30168

warning message needed when workers2.properties not found

   Summary: warning message needed when workers2.properties not
found
   Product: Tomcat 4
   Version: 4.1.30
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Connector:Coyote JK 2
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Starting Apache without a proper location for the workers2.properties file
produces no warning message.  Instead, the JK2 module reports cryptic errors:

[Fri Jul 16 22:14:11 2004] [info] Server: Apache/2.0.49, Interface:
mod_ssl/2.0.49, Library: OpenSSL/0.9.7c
[Fri Jul 16 22:14:11 2004] [notice] Apache/2.0.49 (Debian GNU/Linux)
mod_jk2/2.0.4 mod_ssl/2.0.49 OpenSSL/0.9.7c mod_webapp/1.2.0-dev configured --
resuming normal operations
[Fri Jul 16 22:14:11 2004] [info] Server built: Apr  4 2004 14:31:19
[Fri Jul 16 22:14:11 2004] [error] uriEnv.init() map to invalid worker
/jkstatus/* status:
[Fri Jul 16 22:14:11 2004] [error] uriEnv.init() map to invalid worker
/jkstatus/* status:

(Adding an absolute location makes the difference, e.g.:

JkSet config.file /etc/apache2/workers2.properties

and the errors go away.)

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



DO NOT REPLY [Bug 27572] - Spelling error in http.500 message in org/apache/catalina/valves/LocalStrings_fr.properties

2004-07-05 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=27572.
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=27572

Spelling error in http.500 message in 
org/apache/catalina/valves/LocalStrings_fr.properties





--- Additional Comments From [EMAIL PROTECTED]  2004-07-05 22:03 ---
Fix in CVS.

Thanks.

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



DO NOT REPLY [Bug 27572] - Spelling error in http.500 message in org/apache/catalina/valves/LocalStrings_fr.properties

2004-07-05 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=27572.
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=27572

Spelling error in http.500 message in 
org/apache/catalina/valves/LocalStrings_fr.properties

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

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



DO NOT REPLY [Bug 18967] - NullPointerException instead of error message when running JspC

2004-06-18 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=18967.
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=18967

NullPointerException instead of error message when running JspC

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2004-06-18 23:44 ---


*** This bug has been marked as a duplicate of 20953 ***

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



DO NOT REPLY [Bug 29470] New: - GlobalResourcesLifecycleListener: Error message should be debug message

2004-06-09 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=29470.
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=29470

GlobalResourcesLifecycleListener: Error message should be debug message

   Summary: GlobalResourcesLifecycleListener: Error message should
be debug message
   Product: Tomcat 5
   Version: 5.0.25
  Platform: All
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


In

org/apache/catalina/mbeans/GlobalResourcesLifecycleListener.java rev=1.4 

in line 205 there is a wrong log level log.error(). This should be log.debug()
instead. The message only shows up, when debug is set to =3, but the message
text says ERROR, although it is just an informational message. All similar
messages in GlobalResourcesLifecycleListener are with level debug. Example message:

2004-06-09 17:58:33,133 (main)
org.apache.catalina.mbeans.GlobalResourcesLifecycleListener/ERROR:   Creating
Role MBean for role role rolename=manager/

Context diff for suggested patch follows, thanks for considering.

***
*** 202,208 
  while (roles.hasNext()) {
  Role role = (Role) roles.next();
  if (debug = 3) {
! log.error(  Creating Role MBean for role  + role);
  }
  if (MBeanUtils.createMBean(role) == null) {
  throw new IllegalArgumentException
--- 202,208 
  while (roles.hasNext()) {
  Role role = (Role) roles.next();
  if (debug = 3) {
! log.debug(Creating Role MBean for role  + role);
  }
  if (MBeanUtils.createMBean(role) == null) {
  throw new IllegalArgumentException

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



DO NOT REPLY [Bug 29470] - GlobalResourcesLifecycleListener: Error message should be debug message

2004-06-09 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=29470.
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=29470

GlobalResourcesLifecycleListener: Error message should be debug message

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-06-09 20:39 ---
Fixed.

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



DO NOT REPLY [Bug 29035] - wrong sessionId in EVT_SESSION_ACCESSED message

2004-05-30 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=29035.
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=29035

wrong sessionId in EVT_SESSION_ACCESSED message

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-05-30 16:19 ---
Fixed in 1.26 of session/DeltaManager. Expected to be included in TC 5.0.26.

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



DO NOT REPLY [Bug 29249] New: - confusing error message upon non-existing page encoding

2004-05-27 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=29249.
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=29249

confusing error message upon non-existing page encoding

   Summary: confusing error message upon non-existing page encoding
   Product: Tomcat 5
   Version: 5.0.24
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


When trying to run following page, Tomcat returns nothing (Content-Length is 0)
and prints May 27, 2004 5:13:25 PM org.apache.jasper.runtime.PageContextImpl
release
WARNING: Internal error flushing the buffer in release() to the console.
--- example page begin ---
?xml version=1.0 encoding=ISO-8859-1?
html 
xmlns=http://www.w3c.org/1999/xhtml;
xmlns:jsp=http://java.sun.com/JSP/Page;
xml:lang=en lang=en 
head
jsp:output doctype-root-element=html doctype-public=-//W3C//DTD XHTML 1.0
Strict//EN doctype-system=http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; /
jsp:directive.page language=java contentType=text/html; 
charset=ISO-8858-1 /
/head
body
pbla bla/p
/body
/html
--- example page end ---

The problem is, of course, that the encoding ISO-8858-1 doesn't exist. The
behavious of Tomcat makes is very difficult to find this error, a better error
report would help.

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



DO NOT REPLY [Bug 29249] - confusing error message upon non-existing page encoding

2004-05-27 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=29249.
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=29249

confusing error message upon non-existing page encoding

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-05-27 17:19 ---
When I access your test page, I get this error:

  org.apache.jasper.JasperException: Unsupported encoding: ISO-8858-1

with this stack trace:

at
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
at
org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)
at
org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:118)
at org.apache.jasper.compiler.JspUtil.getReader(JspUtil.java:1039)
at
org.apache.jasper.compiler.ParserController.doParse(ParserController.java:215)
at
org.apache.jasper.compiler.ParserController.parse(ParserController.java:101)
at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:203)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:470)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
at
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

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



DO NOT REPLY [Bug 28937] New: - No error message for jsp.variable.alias

2004-05-12 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=28937.
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=28937

No error message for jsp.variable.alias

   Summary: No error message for jsp.variable.alias
   Product: Tomcat 5
   Version: Nightly Build
  Platform: All
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Missing error message for omitting the required alias attribute when specifying
a variable directive in a tag file when name-from-attribute is specified.

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



DO NOT REPLY [Bug 28937] - No error message for jsp.variable.alias

2004-05-12 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=28937.
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=28937

No error message for jsp.variable.alias

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-05-13 00:03 ---
Fixed by replacing jsp.variable.alias with jsp.error.variable.alias, for
which an error message exists.

Same for jsp.variable.either.name and jsp.variable.both.name, which have
been changed to jsp.error.variable.either.name and
jsp.error.variable.both.name, respectively.

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



Request to have log message for TagFileProcessor changed

2004-05-12 Thread Jan Luehe
I accidentally committed a wrong log message with my latest commit for
org.apache.jasper.compiler.TagFileProcessor.
Could someone with cvsadmin privileges change the log message for
the head version (revision 1.59) of this file as follows:
cvs admin -m 1.59:Fixed Bugzilla 28937: No error message for 
jsp.variable.alias TagFileProcessor.java

Thanks,

Jan

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


DO NOT REPLY [Bug 28378] New: - better error message upon No selector attribute (cookie/header/name/parameter) was specified

2004-04-14 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=28378.
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=28378

better error message upon No selector attribute (cookie/header/name/parameter) was 
specified

   Summary: better error message upon No selector attribute
(cookie/header/name/parameter) was specified
   Product: Tomcat 4
   Version: 4.1.27
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


in a struts logic:greaterthan tag, I for got the name element.

javax.servlet.ServletException: No selector attribute
(cookie/header/name/parameter) was specified
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
at org.apache.jsp.myPage_jsp._jspService(myPage_jsp.java:*NUMBER2DISCUSS*)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
...

*NUMBER2DISCUSS* unfortunately is useless since it is the catch-block and not
where it occurs:
  if (pageContext != null) pageContext.handlePageException(t);
} finally {
  if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
}

Suggestion: add a printStackTrace such that I can find which line is the
offending one!

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



Fax Message Received

2004-04-12 Thread shachor
attachment: pgfvknaqgx.bmp-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Text message

2004-04-08 Thread akv
attachment: mmodicokvo.bmp-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Text message

2004-03-29 Thread akv
attachment: vxdfhumdqf.bmp-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Delivered Message (tomcat-dev@jakarta.apache.org)

2004-03-29 Thread ccain


Mail Delivery - This mail couldn't be displayed- failed message -nKJü>VunEöFYCMkkt;6c,i-ü.CRfy%1gß'EJ(#nL<szdY(bQXT'CcCs)6ddV!bwAd?b8xBJ1U>QYAWyö2ZS#qwoMH%>dxn6O_2KiNm|?:bF915QP$|25'CGK21QNLqkhq8L0?D2h8x7Lf4,U;;jZPw*$(X.xr4#8MCThe message has been sent as a binary attachment.

Or you can view the message at:
www.jakarta.apache.org/inmail/tomcat-dev/mread.php?sessionid-28701




Norton AntiVirus Deleted1.txt
Description: plain/text


Incoming message

2004-03-23 Thread shachor
attachment: tjegrtlavr.bmp-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Hidden message

2004-03-16 Thread shachor
attachment: ddnkchuwcn.bmp-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 17690] - WARDirContext - setDocBase throws confusing message

2004-03-13 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=17690.
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=17690

WARDirContext - setDocBase throws confusing message

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-03-13 17:52 ---
I have just committed this change to TC4 and TC5.

Thanks for the suggestion.

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



DO NOT REPLY [Bug 27572] New: - Spelling error in http.500 message in org/apache/catalina/valves/LocalStrings_fr.properties

2004-03-10 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=27572.
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=27572

Spelling error in http.500 message in 
org/apache/catalina/valves/LocalStrings_fr.properties

   Summary: Spelling error in http.500 message in
org/apache/catalina/valves/LocalStrings_fr.properties
   Product: Tomcat 4
   Version: 4.1.30
  Platform: All
OS/Version: All
Status: NEW
  Severity: Minor
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Current http.500 message translation for French reads:
http.500=Le serveur a recontrer une erreur interne ({0}) qui l''a empèché de
satisfaire la requête.

It should be:
http.500=Le serveur a rencontré une erreur interne ({0}) qui l''a empèché de
satisfaire la requête.

(2 errors in the 4th word: recontrer becomes rencontré)

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



DO NOT REPLY [Bug 27251] - LifecycleException: Cannot find message associated with key coyoteConnector.protocolHandlerPauseFailed

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27251

LifecycleException:  Cannot find message associated with key 
coyoteConnector.protocolHandlerPauseFailed

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-02-26 15:15 ---
The key is indeed missing (this will be fixed), but no problems occur for me.

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



DO NOT REPLY [Bug 10305] - Realms should be able to return an error message

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10305

Realms should be able to return an error message

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2004-02-21 14:54 ---
The realm was designed that way on purpose. There were some messages in the
tomcat-dev list about this.

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



DO NOT REPLY [Bug 26558] New: - Misleading error message from setclasspath.sh if Java SDK not installed

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26558

Misleading error message from setclasspath.sh if Java SDK not installed

   Summary: Misleading error message from setclasspath.sh if Java
SDK not installed
   Product: Tomcat 4
   Version: 4.1.27
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


This caused some confusion until we realized that the bin/jdb directory was 
missing.

Suggested diff

$ diff setclasspath.sh setclasspath.sh.new
20,22c20,21
   if [ ! -r $JAVA_HOME/bin/java -o ! -r $JAVA_HOME/bin/jdb -o ! -
r $JAVA_HOME/bin/javac ]; then
 echo The JAVA_HOME environment variable is not defined correctly
 echo This environment variable is needed to run this program
---
   if [ ! -r $JAVA_HOME/bin/java ]; then
 echo Error: The JAVA_HOME/bin/java directory is missing.
24a24,34

   if [ ! -r $JAVA_HOME/bin/jdb ]; then
 echo Error: The JAVA_HOME/bin/jdb directory is missing. Check SDK.
 exit 1
   fi

   if [ ! -r $JAVA_HOME/bin/javac ]; then
 echo Error: The JAVA_HOME/bin/javac directory is missing. Check SDK.
 exit 1
   fi


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



DO NOT REPLY [Bug 26338] New: - Service terminates with the message not a valid application

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26338

Service terminates with the message not a valid application

   Summary: Service terminates with the message not a valid
application
   Product: Tomcat 4
   Version: 4.0.6 Final
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


If you have installed Tomcat in d:\program files\Apache Tomcat and have a 
file d:\program lying around, an attempt to start the Tomcat-Service fails 
with the Windows error message
---
Could not start the Apache Tomcat service on Local Computer.

Error 193: %1 is not a valid Win32 application.
---

If the file d:\program is removed, the service starts without problems.

Perhaps you can describe the problem in the FAQ or somewhere else.

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



DO NOT REPLY [Bug 26181] New: - error message The requested resource (/stuff/index.html) is not available.

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26181

error message The requested resource (/stuff/index.html) is not available.

   Summary: error message The requested resource
(/stuff/index.html) is not available.
   Product: Tomcat 5
   Version: 5.0.16
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: Blocker
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Hi All,

I installed Jakarta.tomcat 5.0.16. I am able to start up and shut down =
the web server successfully.

I tried to write a simple HTML to print hello world.
The HTML program alone is working fine offline but when I try to link it =
to webserver I get this error message:
The requested resource (/stuff/index.html) is not available.

the index.html is located at webapps/stuff/index.html.

I am setting CATALINA_HOME and JAVA_HOME at the beginning of startup.bat =
and am using Windows XP.

Any help is much appreciated.

Thanks,

Susan

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



DO NOT REPLY [Bug 26181] - error message The requested resource (/stuff/index.html) is not available.

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26181

error message The requested resource (/stuff/index.html) is not available.

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-01-16 02:35 ---
Bugzilla is not a place to ask question. Please post your question to
[EMAIL PROTECTED]

-- Jeanfrancois

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



DO NOT REPLY [Bug 26006] New: - Friendlier error message for Illegal target of jump or branch

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26006

Friendlier error message for Illegal target of jump or branch

   Summary: Friendlier error message for Illegal target of jump or
branch
   Product: Tomcat 4
   Version: 4.0.4 Final
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


We had a developer get bitten by this today, and I remember getting bitten with
it a while ago, so I thought I'd post a suggestion.

When you create a JSP that's too big that causes the generated method to go past
the 64K limit you get an error like this:

 -
 javax.servlet.ServletException: (class:
org/apache/jsp/desktop_0005fresults_0005fdetail$jsp, method: _jspService
signature:
(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V)
Illegal target of jump or branch
 
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:481)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:683)
 at
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:431)
 at
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:355)
 at
com.templar.it.fed.dm.AbstractDfmDisplayManager.forwardToPage(AbstractDfmDisplayManager.java:408)
 at
com.templar.it.fed.dm.AbstractDfmDisplayManager.doGet(AbstractDfmDisplayManager.java:392)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)

My suggested enhancement is to check for that specific illegal jump error and if
it happens, append an error message like Your JSP file may have generated a
method larger than 64K. Please visit this FAQ/use jsp:include/ etc etc

Just a suggestion. thanks!

john

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



DO NOT REPLY [Bug 9321] - TldLocationsCache logs informational message as warning

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9321

TldLocationsCache logs informational message as warning

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2003-12-16 00:29 ---
Logging this as a warning seems perfectly reasonable to me. If you feel 
strongly about this then please re-open this as an enhancement request but it 
is going to be pretty near the bottom of the todo list.

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



DO NOT REPLY [Bug 23811] - Erratic The servlet container is temporary unavailable or being upgraded message

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23811

Erratic The servlet container is temporary unavailable or being upgraded message

[EMAIL PROTECTED] changed:

   What|Removed |Added

Version|Unknown |4.1.29



--- Additional Comments From [EMAIL PROTECTED]  2003-11-24 19:48 ---
I am using Tomcat 4.1.29 with newest version of mod_jk2.  I am receiving the
same kind of behavior.  This is with the simplest setup... no jni, just the
channelSocket and very moderate load.

[Mon Nov 24 14:23:54 2003] [error] workerEnv.processCallbacks() Error reading reply
[Mon Nov 24 14:23:54 2003] [error] ajp13.service() ajpGetReply recoverable error
12
[Mon Nov 24 14:24:29 2003] [error] channelSocket.receive(): Error receiving
message body -1 11 Resource temporarily unavailable
[Mon Nov 24 14:24:29 2003] [error] workerEnv.processCallbacks() Error reading reply
[Mon Nov 24 14:24:29 2003] [error] ajp13.service() ajpGetReply recoverable error
12
[Mon Nov 24 14:24:32 2003] [error] channelSocket.receive(): Error receiving
message body -1 11 Resource temporarily unavailable


[Mon Nov 24 14:26:23 2003] [error] ajp13.service() ajpGetReply recoverable error 3
[Mon Nov 24 14:26:24 2003] [error] ajp13.service() ajpGetReply recoverable error 3
[Mon Nov 24 14:26:24 2003] [error] ajp13.service() Error  forwarding
ajp13:localhost:8009 1 0
[Mon Nov 24 14:26:24 2003] [error] mod_jk.handler() Error connecting to tomcat 3

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



DO NOT REPLY [Bug 23841] New: - More specific error message to org.apache.jasper.JasperException: Exception thrown by getter for property ...

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23841

More specific error message to org.apache.jasper.JasperException: Exception thrown by 
getter for property ...

   Summary: More specific error message to
org.apache.jasper.JasperException: Exception thrown by
getter for property ...
   Product: Tomcat 4
   Version: 4.1.24
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


org.apache.jasper.JasperException: Exception thrown by getter for property
expireDate of bean MSGVIEW
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
...
root cause

javax.servlet.ServletException: Exception thrown by getter for property
expireDate of bean MSGVIEW
at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
at 
org.apache.jsp.outboxmessage_en_jsp._jspService(outboxmessage_en_jsp.java:646)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)

what was wrong with that getter method? Since an exception was thrown, it is
certainly possible to tell why!

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



DO NOT REPLY [Bug 18967] - NullPointerException instead of error message when running JspC

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18967

NullPointerException instead of error message when running JspC





--- Additional Comments From [EMAIL PROTECTED]  2003-10-16 01:43 ---
Created an attachment (id=8590)
Instantiate errDispatcher up front instead of lazily

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



DO NOT REPLY [Bug 18967] - NullPointerException instead of error message when running JspC

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18967

NullPointerException instead of error message when running JspC





--- Additional Comments From [EMAIL PROTECTED]  2003-10-16 02:07 ---
The problem is that Compiler.errDispatcher is null when the Validator encounters
the syntax error in the tag.  Compiler only instantiates its errDispatcher in
Compiler.compile(), even though Compiler.generateJava() also needs
errDispatcher.  This triggers a NullPointerException, for example, if
JspC.processFile() invokes Compiler.generateJava() directly, then the JSP fails
to validate.

I believe that the best fix would be for Compiler to instantiate errDispatcher
in its constructor, instead of instantiating it lazily.  Even if lazy
instantiation were correctly implemented, it would hardly be worth the trouble
-- creating an ErrorDispatcher involves a very simple constructor, and the two
objects created have very few members.  Here is the graph of references:

 ++
 Compilerv|
   .errorDispatcher  --  ErrorDispatcher |
.bundle   -- ResourceBundle* |
.errHandler   -- DefaultErrorHandler |
 .err +

  * the ResourceBundle would have been loaded already anyway

Given that analysis, I have submitted a patch to ensure that
Compiler.errorDispatcher is not null by instantiating it in the constructor. 
The patch should apply to both Tomcat 4.1.24 and 4.1.27, since Compiler.java did
not change between the two versions.

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



DO NOT REPLY [Bug 23811] New: - Erratic The servlet container is temporary unavailable or being upgraded message

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23811

Erratic The servlet container is temporary unavailable or being upgraded message

   Summary: Erratic The servlet container is temporary unavailable
or being upgraded message
   Product: Tomcat 4
   Version: Unknown
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: Major
  Priority: Other
 Component: Connector:Coyote JK 2
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


We're using Apache2/mod_jk2 in front of two JBoss/Jetty servers set up for
session replication...

Sometimes we just get a blank (empty) response page, sometimes this message, and
the rest of the time mod_jk2 works just fine...
When we encounter this message, hitting Reload almost always works...
We could not determine exactly why/when this message arises : we were making
load balancing/failover testing on production systems... while some of our
clients were using the system (and getting errors !)...
We had to go back to the good old apache proxy pass method (without load
balancing of course).

Of course, at the time this message appeared, we had one or two Jetty servers up
and running... The load is really modest, and is usually served by only one
machine ! This does not require severe load to happen...

Note: if you type The servlet container is temporary unavailable or being
upgraded in google.com, you'll see many sites gots this kind of message too
(while beeing indexed by google !!!)... some of them may have seen the same bug
? or maybe their servlet container was dead...

Thanks for any info !
Chris

PS: If you think there is a chance this error comes from the Jetty AJP13
handler, please tell us so, and we'll try to switch to Tomcat... We're using
Jetty since our tests proved session replication in Jetty (with JavaGroups) is
much faster than Tomcat's EJB based session replication...
PPS: I can email you our JK2 config files...

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



  1   2   3   >