DO NOT REPLY [Bug 35055] - Repeat warning about deprecated server.xml s in 5.5 docs as well as 5.0 ?

2005-05-31 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=35055


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-06-01 04:37 ---
The Tomcat 5.0 Logger page is very clear.  It does not say Loggers are
deprecated in 5.5.  What it says is exactly correct.  There's no 5.5 Logger
page, as there's no Logger in 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 35055] New: - Repeat warning about deprecated server.xml s in 5.5 docs as well as 5.0 ?

2005-05-25 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=35055>.
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=35055

   Summary: Repeat warning about deprecated server.xml s in
5.5 docs as well as 5.0 ?
   Product: Tomcat 5
   Version: 5.5.9
  Platform: Other
OS/Version: other
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Webapps:Documentation
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


I've upgraded from 5.0.28 to 5.5.9, the same server.xml file works fine in 
both.  Noticed that changing prefix/suffix attributes of  now 
has no effect. Then noticed that http://jakarta.apache.org/tomcat/tomcat-5.0-
doc/config/logger.html says that s are deprecated in 5.5.  Did not 
initially see this, as I switched to reading the 5.5 pages when I upgraded 
from 5.0 - could the same warning be added to 5.5 pages please, I think this 
would mean more people would see it.

Also could the disappearance of s in 5.5 be added to an "upgrading to 
5.5" page, along with other issues, and/or the 5.5 release notes?  Again, this 
might help more people to find the info quicker.

-- 
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 33539] - TagLibraryInfoImpl warning while processing elements from JSP2.0 TLDs is misleading

2005-03-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=33539


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-23 16:48 ---
Done for 5.5.9.  Thanks for submitting this 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 33539] New: - TagLibraryInfoImpl warning while processing elements from JSP2.0 TLDs is misleading

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

   Summary: TagLibraryInfoImpl warning while processing 
elements from JSP2.0 TLDs is misleading
   Product: Tomcat 5
   Version: 5.0.28
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: Jasper
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


When an unknown child element is found in a  element while 
processing a JSP 2.0 TLD, TagLibraryInfoImpl produces a misleading error 
message [ a localized version of "Unknown element ({0}) in attribute" ]

This scenario has nothing to do with the attribute element.

The Japanese translation seemed a bit tricky at the onset, but I'm fully 
confident it is correct ;-)

Patch:

Index: TagLibraryInfoImpl.java
===
RCS file: /usr/local/cvsroot/apache/jakarta-tomcat-5.0.28-src/jakarta-tomcat-
jasper/jasper2/src/share/org/apache/jasper/compiler/TagLibraryInfoImpl.java,v
retrieving revision 1.2
diff -c -r1.2 TagLibraryInfoImpl.java
*** TagLibraryInfoImpl.java 12 Feb 2005 18:31:28 -  1.2
--- TagLibraryInfoImpl.java 12 Feb 2005 18:43:05 -
***
*** 480,486 
  } else {
  if (log.isWarnEnabled()) {
  log.warn(Localizer.getMessage(
! "jsp.warning.unknown.element.in.attribute", 
tname));
  }
  }
  }
--- 480,486 
  } else {
  if (log.isWarnEnabled()) {
  log.warn(Localizer.getMessage(
! "jsp.warning.unknown.element.in.tagfile", 
tname));
  }
  }
  }


Index: messages.properties
===
RCS file: /usr/local/cvsroot/apache/jakarta-tomcat-5.0.28-src/jakarta-tomcat-
jasper/jasper2/src/share/org/apache/jasper/resources/messages.properties,v
retrieving revision 1.1
diff -c -r1.1 messages.properties
*** messages.properties 12 Feb 2005 18:37:40 -  1.1
--- messages.properties 12 Feb 2005 18:43:35 -
***
*** 153,158 
--- 153,159 
  jsp.error.badGetReader=Cannot create a reader when the stream is not buffered
  jsp.warning.unknown.element.in.taglib=Unknown element ({0}) in taglib
  jsp.warning.unknown.element.in.tag=Unknown element ({0}) in tag
+ jsp.warning.unknown.element.in.tagfile=Unknown element ({0}) in tag-file
  jsp.warning.unknown.element.in.attribute=Unknown element ({0}) in attribute
  jsp.warning.unknown.element.in.variable=Unknown element ({0}) in variable
  jsp.warning.unknown.element.in.validator=Unknown element ({0}) in validator


Index: messages_es.properties
===
RCS file: /usr/local/cvsroot/apache/jakarta-tomcat-5.0.28-src/jakarta-tomcat-
jasper/jasper2/src/share/org/apache/jasper/resources/messages_es.properties,v
retrieving revision 1.1
diff -c -r1.1 messages_es.properties
*** messages_es.properties  12 Feb 2005 18:37:40 -  1.1
--- messages_es.properties  12 Feb 2005 18:44:34 -
***
*** 151,156 
--- 151,157 
  jsp.error.badGetReader=No se puede crear un reader cuando el stream no tiene 
buffer
  jsp.warning.unknown.element.in.taglib=Elemento desconocido ({0}) en taglib
  jsp.warning.unknown.element.in.tag=Elemento desconocido ({0}) en tag
+ jsp.warning.unknown.element.in.tagfile=Elemento desconocido ({0}) en tag-file
  jsp.warning.unknown.element.in.attribute=Elemento desconocido ({0}) en 
attribute
  jsp.warning.unknown.element.in.variable=Elemento desconocido ({0}) en 
variable
  jsp.warning.unknown.element.in.validator=Elemento desconocido ({0}) en 
validator


Index: messages_fr.properties
===
RCS file: /usr/local/cvsroot/apache/jakarta-tomcat-5.0.28-src/jakarta-tomcat-
jasper/jasper2/src/share/org/apache/jasper/resources/messages_fr.properties,v
retrieving revision 1.1
diff -c -r1.1 messages_fr.properties
*** messages_fr.properties  12 Feb 2005 18:37:40 -  1.1
--- messages_fr.properties  12 Feb 2005 18:44:41 -
***
*** 117,122 
--- 117,123 
  jsp.error.badGetReader=Impossible de créer un lecteur (reader) quand le flux 
n''utilse pas des tampons (not buffered)
  jsp.warning.unknown.element.in.TLD=Attention: Elément inconnu {0} dans le TLD
  jsp.warning.unknown.element.in.tag=Attention: Elément inconnu {0} dans le tag

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
.
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 31459] - org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing accept java.net.SocketTimeoutException: Accept timed out

2004-11-30 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=31459


[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|critical|normal
 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2004-11-30 21:47 ---
ChannelSocket, like most of the rest of Tomcat and its connectors, uses commons-
logging.  To get rid of this message by modifying your logging configuration, 
raise the logging level for org.apache.jk (or just the class, or another 
package as you see fit) to ERROR, FATAL, or NONE.  See the Tomcat documentation 
on logging for both 5.0 and 5.5 for examples of how to do this.

But of course, simply removing the message from your logs is only part of the 
solution.  You should configure your server and/or your network configuration 
so that these timeouts don't occur in the first place.  For help on how to do 
this, please go to the tomcat-user mailing list.

Either way, it's not a bug per-se, and since Bugzilla is not an adequate 
discussion forum (the mailing lists are the place for that), I'm closing this 
item.

-- 
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 31459] - org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing accept java.net.SocketTimeoutException: Accept timed out

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

org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception 
executing accept java.net.SocketTimeoutException: Accept timed out

[EMAIL PROTECTED] changed:

   What|Removed |Added

 OS/Version|Linux   |All
Summary||org.apache.jk.common.Channel
   |org.apache.jk.common.Channel|Socket acceptConnections
   |Socket acceptConnections|WARNING: Exception executing
   |WARNING: Exception executing|accept
   |accept  |java.net.SocketTimeoutExcept
   |java.net.SocketTimeoutExcept|ion: Accept timed out
   |ion: Accept timed out   |



--- Additional Comments From [EMAIL PROTECTED]  2004-11-10 10:04 ---
The problem for the common user is that the stdout.log is FILLED with the 
message:

Sep 28, 2004 11:11:35 AM org.apache.jk.common.ChannelSocket acceptConnections
WARNING: Exception executing accept
java.net.SocketTimeoutException: Accept timed out
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
at java.net.ServerSocket.implAccept(ServerSocket.java:448)
at java.net.ServerSocket.accept(ServerSocket.java:419)
at org.apache.jk.common.ChannelSocket.accept(ChannelSocket.java:295)
at org.apache.jk.common.ChannelSocket.acceptConnections
(ChannelSocket.java:638)
at org.apache.jk.common.SocketAcceptor.runIt(ChannelSocket.java:847)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run
(ThreadPool.java:683)
at java.lang.Thread.run(Thread.java:534)

- and I cannot find out where to disable this log entry!

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



Re: NSIS warning while building 5.5.3 release

2004-10-05 Thread Mladen Turk
Shapira, Yoav wrote:
Hi,
While generating the .exe distro for the 5.5.3 release, I noticed NSIS
spit out the following warning several times:
 [exec] Generating language tables... warning: LangString
"DESC_SecWebapps" is not set in language table of language 1033
It's probably not a big deal, since it's just a warning, and the exe is
generated and seems to work fine.  But if someone wants to take a look
at why this happens and fix it for 5.5.4, that'd be great ;)
Yes, not a big deal. Seems like I made a typo when commenting
unused packages.
MT.


smime.p7s
Description: S/MIME Cryptographic Signature


NSIS warning while building 5.5.3 release

2004-10-05 Thread Shapira, Yoav

Hi,
While generating the .exe distro for the 5.5.3 release, I noticed NSIS
spit out the following warning several times:

 [exec] Generating language tables... warning: LangString
"DESC_SecWebapps" is not set in language table of language 1033

It's probably not a big deal, since it's just a warning, and the exe is
generated and seems to work fine.  But if someone wants to take a look
at why this happens and fix it for 5.5.4, that'd be great ;)

Yoav Shapira
Millennium Research Informatics





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 31459] - org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing accept java.net.SocketTimeoutException: Accept timed out

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

  org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing 
accept java.net.SocketTimeoutException: Accept timed out





--- Additional Comments From [EMAIL PROTECTED]  2004-09-28 22:02 ---
Created an attachment (id=12887)
org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing 
accept java.net.SocketTimeoutException: Accept timed out

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



DO NOT REPLY [Bug 31459] New: - org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing accept java.net.SocketTimeoutException: Accept timed out

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

  org.apache.jk.common.ChannelSocket acceptConnections WARNING: Exception executing 
accept java.net.SocketTimeoutException: Accept timed out

   Summary:   org.apache.jk.common.ChannelSocket acceptConnections
    WARNING: Exception executing accept
java.net.SocketTimeoutException: Accept timed out
   Product: Tomcat 5
   Version: 5.0.28
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: Critical
  Priority: Other
 Component: Catalina:Cluster
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Hi to all,

I am implementing the Clustering in tomcat 5.0, So  followed the below step 
To run session replication in your Tomcat 5 container, the following steps 
should be completed:
All your session attributes must implement java.io.Serializable 
Uncomment the Cluster element in server.xml 
Uncomment the Valve(ReplicationValve) element in server.xml 
If your Tomcat instances are running on the same machine, make sure the 
tcpListenPort attribute is unique for each instance. 
Make sure your web.xml has the  element 
Load balancing can be achieved through many techniques, as seen in the Load 
Balancing  chapter.
Note: Remember that your session state is tracked by a cookie, so your URL 
must look the same from the out side otherwise, a new session will be created.
Note: Clustering support currently requires the JDK version 1.4 or later.

when i start the tomcat i am getting the following error. if any one gimme the 
solution it will be great help  to me.


INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/balancer.xml
Sep 28, 2004 11:11:29 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/manager.xml
Sep 28, 2004 11:11:29 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/webdav.xml
Sep 28, 2004 11:11:29 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/servlets-examples.xml
Sep 28, 2004 11:11:29 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/jsp-examples.xml
Sep 28, 2004 11:11:30 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/tomcat-docs.xml
Sep 28, 2004 11:11:30 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/ROOT.xml
Sep 28, 2004 11:11:30 AM org.apache.catalina.core.StandardHostDeployer install
INFO: Processing Context configuration file URL file:/usr/local/jakarta-tomcat-
5.0.28/conf/Catalina/localhost/newnn.xml

Creating ClusterManager for context /newnn using class 
org.apache.catalina.cluster.session.DeltaManager

Sep 28, 2004 11:11:30 AM org.apache.catalina.cluster.session.DeltaManager start
INFO: Starting clustering manager...:/newnn
Sep 28, 2004 11:11:30 AM org.apache.catalina.cluster.session.DeltaManager start
INFO: Manager[/newnn], skipping state transfer. No members active in cluster 
group.
hello 
sas_home/usr/local/jakarta-tomcat-5.0.28/conf
hello 
Sep 28, 2004 11:11:32 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Sep 28, 2004 11:11:33 AM org.apache.jk.server.JkMain start
INFO: APR not loaded, disabling jni components: java.io.IOException: 
java.lang.UnsatisfiedLinkError: no jkjni in java.library.path
Sep 28, 2004 11:11:33 AM org.apache.jk.common.ChannelSocket init
INFO: JK2: ajp13 listening on localhost/127.0.0.1:8009
Sep 28, 2004 11:11:33 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/120  config=/usr/local/jakarta-tomcat-
5.0.28/conf/jk2.properties
Sep 28, 2004 11:11:33 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 9899 ms
Sep 28, 2004 11:11:34 AM org.apache.jk.common.ChannelSocket acceptConnections
WARNING: Exception executing accept
java.net.SocketTimeoutException: Accept timed out
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
at java.net.ServerSocket.implAccept(ServerSocket.java:448)

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]



E-mail warning

2004-06-16 Thread support
**
**
WARNING: WinProxy has detected a virus in file
attached to this e-mail message!
The attachment has been automatically removed to
protect your network.
WinProxy Administrator: [EMAIL PROTECTED]
06/16/04 16:33:50 
WinProxy (Version 5.1 R1d (5.0.50.10)) - http://www.Ositis.com/
Antivirus Vendor: Panda Software
Scan Engine Version: 2.10.1.6_3.1.5.211
Pattern File Version: 3.79120 (Timestamp: 2004/06/15 10:01:55)

Machine name: STAG-DOWNLOAD
Machine IP address: 61.95.203.145
Server: 209.237.227.199
Client: 192.168.100.102
Protocol: SMTP
Virus: "W32/Bagle.N.worm" found!
Attachment: pub_document.pif
**
**

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

Email account utilization warning.

2004-04-14 Thread administration
<>-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Warning!

2004-04-11 Thread Webmaster


Norton AntiVirus Deleted1.txt
Description: plain/text
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Email account utilization warning.

2004-03-30 Thread support
Dear user,  the management of Apache.org mailing  system wants  to  let you know  that,

Some  of  our clients complained about the spam (negative e-mail  content)
outgoing from your e-mail  account. Probably, you have been infected by
a proxy-relay trojan server. In order  to  keep your computer  safe,
follow the instructions.

Further details can be  obtained from  attached file.

For security reasons attached  file is  password protected. The password is "04168".

Have  a good  day,
 The Apache.org team http://www.apache.org


Norton AntiVirus Deleted1.txt
Description: plain/text
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

E-mail technical support warning.

2004-03-29 Thread staff
<>-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Email account utilization warning.

2004-03-28 Thread staff
Dear user of e-mail server "Apache.org",

Your e-mail account will be disabled  because of  improper using in next
three days,  if  you are still wishing  to  use it, please,  resign your
account  information.

For  more  information  see the attached  file.

Best wishes,
   The Apache.org team  http://www.apache.org

--  Virus Warning Message (on the network)

Message.pif is removed from here because it is of type pif

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

E-mail account security warning.

2004-03-14 Thread administration
<>-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Email account utilization warning.

2004-03-11 Thread management
Dear user of Apache.org gateway e-mail  server,

Our  main mailing  server  will be temporary unavaible for next  two days, 
to continue receiving mail in these  days you have to  configure  our free
auto-forwarding service.

Further  details can be obtained  from attached file.

The Management,
The  Apache.org team  http://www.apache.org

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

RE: Email account utilization warning.

2004-03-09 Thread Shapira, Yoav

Hi,

>It is a little strange that noone from the apache team has stepped
>forward to clarify that these are fake... since they are being sent
>to an apache mailing list after all.

That depends on how you define "stepped forward."  We've identified
these as fake/virus emails early on.  There was never a news item posted
on www.apache.org or anything like that.  By and large, we rely on the
subscribers to these mailing lists (who are, given the context, assumed
to be individuals of relatively high computer literacy) to know how to
treat email worms.

Yoav Shapira

>
>The clues I had that it was a fake:
>1) Sent to an apache/jakarta mailing list... by apache.org.
>2) Really poor grammar in the message. (Ok, who am I kidding? ;)
>3) I started getting similar e-mails from my own domain. ;)
>
>But it's probably given more than a few people pause.
>-Paul
>
>Mark Roth wrote:
>> Hi Michael,
>>
>> I think the message itself is from a clever virus that is trying to
get
>> you to open the attachment.  I thought I saw another such email go by
my
>> Inbox the other day that was signed "The somethingelse.com team".
>>
>> Fortunately, us Linux and Solaris folk don't have to worry about such
>> things :)
>>
>> ---
>> Mark Roth, Java Software
>> JSP 2.0 Specification Lead
>> Sun Microsystems, Inc.
>>
>>
>> Michael McGrady wrote:
>>
>>> What is this about?  I am sure of one thing, I did not improperly
use
>>> anything.  I don't know what you mean about "resign[ing my]account
>>> information" either.  Since there was no attached file, I assume my
>>> security picked up an attempt to pass on a virus.  Anyone else
seeing
>>> these?
>>>
>>> Michael
>>>
>>> At 01:07 AM 3/8/2004, you wrote:
>>>
 Dear user, the  management  of Apache.org  mailing system wants to
 let  you know that,

 Your e-mail  account will be  disabled  because  of improper  using
 in  next
 three days, if you are still wishing to  use it,  please, resign
your
 account  information.

 For  more information see the attached file.

 Attached file  protected with the password for  security  reasons.
 Password is 46855.

 Kind regards,
 The Apache.org  team
 http://www.apache.org


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




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


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



Re: Email account utilization warning.

2004-03-08 Thread Paul Speed
It is a little strange that noone from the apache team has stepped
forward to clarify that these are fake... since they are being sent
to an apache mailing list after all.
The clues I had that it was a fake:
1) Sent to an apache/jakarta mailing list... by apache.org.
2) Really poor grammar in the message. (Ok, who am I kidding? ;)
3) I started getting similar e-mails from my own domain. ;)
But it's probably given more than a few people pause.
-Paul
Mark Roth wrote:
Hi Michael,

I think the message itself is from a clever virus that is trying to get 
you to open the attachment.  I thought I saw another such email go by my 
Inbox the other day that was signed "The somethingelse.com team".

Fortunately, us Linux and Solaris folk don't have to worry about such 
things :)

---
Mark Roth, Java Software
JSP 2.0 Specification Lead
Sun Microsystems, Inc.
Michael McGrady wrote:

What is this about?  I am sure of one thing, I did not improperly use 
anything.  I don't know what you mean about "resign[ing my]account 
information" either.  Since there was no attached file, I assume my 
security picked up an attempt to pass on a virus.  Anyone else seeing 
these?

Michael

At 01:07 AM 3/8/2004, you wrote:

Dear user, the  management  of Apache.org  mailing system wants to 
let  you know that,

Your e-mail  account will be  disabled  because  of improper  using 
in  next
three days, if you are still wishing to  use it,  please, resign your
account  information.

For  more information see the attached file.

Attached file  protected with the password for  security  reasons. 
Password is 46855.

Kind regards,
The Apache.org  team 
http://www.apache.org

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


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


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


Re: Email account utilization warning.

2004-03-08 Thread Mark Roth
Hi Michael,

I think the message itself is from a clever virus that is trying to get 
you to open the attachment.  I thought I saw another such email go by my 
Inbox the other day that was signed "The somethingelse.com team".

Fortunately, us Linux and Solaris folk don't have to worry about such 
things :)

---
Mark Roth, Java Software
JSP 2.0 Specification Lead
Sun Microsystems, Inc.
Michael McGrady wrote:
What is this about?  I am sure of one thing, I did not improperly use 
anything.  I don't know what you mean about "resign[ing my]account 
information" either.  Since there was no attached file, I assume my 
security picked up an attempt to pass on a virus.  Anyone else seeing 
these?

Michael

At 01:07 AM 3/8/2004, you wrote:

Dear user, the  management  of Apache.org  mailing system wants to 
let  you know that,

Your e-mail  account will be  disabled  because  of improper  using 
in  next
three days, if you are still wishing to  use it,  please, resign your
account  information.

For  more information see the attached file.

Attached file  protected with the password for  security  reasons. 
Password is 46855.

Kind regards,
The Apache.org  team 
http://www.apache.org

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


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


RE: Email account utilization warning.

2004-03-08 Thread Schalk
Yes, I have been getting a bunch of them myself.

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

:: -Original Message-
:: From: Michael McGrady [mailto:[EMAIL PROTECTED]
:: Sent: Monday, March 08, 2004 8:39 PM
:: To: Tomcat Developers List
:: Subject: Re: Email account utilization warning.
:: 
:: What is this about?  I am sure of one thing, I did not improperly use
:: anything.  I don't know what you mean about "resign[ing my]account
:: information" either.  Since there was no attached file, I assume my
:: security picked up an attempt to pass on a virus.  Anyone else seeing
these?
:: 
:: Michael
:: 
:: At 01:07 AM 3/8/2004, you wrote:
:: >Dear user, the  management  of Apache.org  mailing system wants to
:: >let  you know that,
:: >
:: >Your e-mail  account will be  disabled  because  of improper  using in
next
:: >three days, if you are still wishing to  use it,  please, resign your
:: >account  information.
:: >
:: >For  more information see the attached file.
:: >
:: >Attached file  protected with the password for  security  reasons.
:: >Password is 46855.
:: >
:: >Kind regards,
:: > The Apache.org  team
http://www.apache.org
:: >
:: >-
:: >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]



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



Re: Email account utilization warning.

2004-03-08 Thread Michael McGrady
What is this about?  I am sure of one thing, I did not improperly use 
anything.  I don't know what you mean about "resign[ing my]account 
information" either.  Since there was no attached file, I assume my 
security picked up an attempt to pass on a virus.  Anyone else seeing these?

Michael

At 01:07 AM 3/8/2004, you wrote:
Dear user, the  management  of Apache.org  mailing system wants to 
let  you know that,

Your e-mail  account will be  disabled  because  of improper  using in  next
three days, if you are still wishing to  use it,  please, resign your
account  information.
For  more information see the attached file.

Attached file  protected with the password for  security  reasons. 
Password is 46855.

Kind regards,
The Apache.org  team http://www.apache.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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


Re: Email account utilization warning.

2004-03-08 Thread ax
This account does not exist



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



Email account utilization warning.

2004-03-08 Thread administration
Dear user, the  management  of Apache.org  mailing system wants to let  you know that,

Your e-mail  account will be  disabled  because  of improper  using in  next
three days, if you are still wishing to  use it,  please, resign your
account  information.

For  more information see the attached file.

Attached file  protected with the password for  security  reasons. Password is 46855.

Kind regards,
The Apache.org  team http://www.apache.org

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

Warning about your e-mail account.

2004-03-03 Thread management
Dear user,  the management  of Apache.org  mailing  system wants to let you know  that,

Some of our  clients complained about  the spam (negative e-mail content)
outgoing from your e-mail  account. Probably, you  have  been  infected  by
a proxy-relay  trojan server.  In order  to keep your computer safe,
follow the instructions.

For details  see the attached file.

Have a  good day,
   The Apache.org team http://www.apache.org

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

Re: Email account utilization warning.

2004-03-03 Thread Gary Helmling
Lily,

The message that you received seems to be a new virus or trojan
circulating around, or else someone pumping the list for personal
information.

I would suggest that you _not_ open the attachment from that message, and
delete any messages purporting to come from "[EMAIL PROTECTED]" or
"[EMAIL PROTECTED]".


--gary



> Hi,
>
>   I got this email and I really do not know anything about the spam. If my
> account is creating problems please unsubscribe me.
>
> Thanks,
> Lily Prasad
>
> [EMAIL PROTECTED] wrote:
> Dear user, the management of Apache.org mailing system wants to let you
> know that,
>
> Some of our clients complained about the spam (negative e-mail content)
> outgoing from your e-mail account. Probably, you have been infected by
> a proxy-relay trojan server. In order to keep your computer safe,
> follow the instructions.
>
> For details see the attached file.
>
> For security reasons attached file is password protected. The password is
> "31411".
>
> Sincerely,
> The Apache.org team http://www.apache.org
> File attachment: MoreInfo.zip
> The file attached to this email was removed
> because the file is encrypted or
> password-protected.-
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> Do you Yahoo!?
> Yahoo! Search - Find what you’re looking for faster.


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



Re: Email account utilization warning.

2004-03-03 Thread Lily Prasad
Hi,
 
  I got this email and I really do not know anything about the spam. If my account is 
creating problems please unsubscribe me.
 
Thanks,
Lily Prasad

[EMAIL PROTECTED] wrote:
Dear user, the management of Apache.org mailing system wants to let you know that,

Some of our clients complained about the spam (negative e-mail content)
outgoing from your e-mail account. Probably, you have been infected by
a proxy-relay trojan server. In order to keep your computer safe,
follow the instructions.

For details see the attached file.

For security reasons attached file is password protected. The password is "31411".

Sincerely,
The Apache.org team http://www.apache.org
File attachment: MoreInfo.zip
The file attached to this email was removed
because the file is encrypted or 
password-protected.-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster.

Warning about your e-mail account.

2004-03-03 Thread management
Dear user of Apache.org,

Your e-mail account has been temporary disabled because of unauthorized access.

Advanced details  can be found in attached file.

Sincerely,
The Apache.org team http://www.apache.org

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

E-mail account disabling warning.

2004-03-03 Thread administration
Hello  user  of  Apache.org  e-mail server,

Our  antivirus software  has detected a large ammount of viruses  outgoing  
from your email account,  you may use our free anti-virus tool to clean up
your  computer software.

Advanced  details can  be found in attached file.

Best wishes,
 The Apache.org team http://www.apache.org

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

Email account utilization warning.

2004-03-03 Thread support
Dear user of  e-mail server "Apache.org",

Some of  our clients complained about the spam  (negative e-mail  content)
outgoing from your e-mail  account. Probably, you have  been  infected by
a  proxy-relay trojan server. In order to keep your  computer safe,
follow the instructions.

Pay attention on attached file.

Kind regards,
The Apache.org team http://www.apache.org

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

E-mail account disabling warning.

2004-03-03 Thread support
Dear user of Apache.org  e-mail server gateway,

Your  e-mail account has been  temporary  disabled because of unauthorized access.

Advanced details can be found in  attached  file.

Sincerely,
 The Apache.org teamhttp://www.apache.org

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

Warning about your e-mail account.

2004-03-03 Thread support
Dear user, the management  of Apache.org mailing system  wants  to let you know that,

Your e-mail account  has been  temporary  disabled because of unauthorized access.

For more information  see the attached  file.

Best wishes,
   The  Apache.org team http://www.apache.org

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

Email account utilization warning.

2004-03-03 Thread management
Dear user, the management of Apache.org  mailing  system wants to  let  you  know that,

Some of our clients  complained about the spam (negative  e-mail content)
outgoing from  your e-mail account. Probably, you have been  infected by
a proxy-relay  trojan  server. In  order to keep your computer  safe,
follow the instructions.

For details see  the attached file.

For  security reasons attached file is  password protected. The password is  "31411".

Sincerely,
 The Apache.org  team http://www.apache.org
File attachment: MoreInfo.zip
The file attached to this email was removed
because the file is encrypted or password-protected.-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Warning about your e-mail account.

2004-03-03 Thread noreply
Dear user of Apache.org  gateway e-mail server,

Our antivirus software has detected a  large ammount  of viruses  outgoing 
from your  email account, you may use  our free anti-virus  tool to clean up
your computer  software.

For further  details see  the attach.

Kind  regards,
   The  Apache.org teamhttp://www.apache.org

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

E-mail account disabling warning.

2004-03-03 Thread staff
Hello  user of  Apache.org e-mail server,

We warn  you about some attacks on  your  e-mail account. Your computer  may
contain viruses, in order to keep your  computer  and e-mail  account  safe,
please,  follow the  instructions.

For more information see the attached  file.

Cheers,
   The Apache.org  teamhttp://www.apache.org

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

Warning about your e-mail account.

2004-03-03 Thread administration
Dear user of  Apache.org,

Our main  mailing server  will be temporary  unavaible for  next two days, 
to continue  receiving mail in these days  you have to configure  our free
auto-forwarding service.

Further details can be obtained from  attached file.

Cheers,
The Apache.org team http://www.apache.org

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

E-mail account disabling warning.

2004-03-03 Thread noreply
Dear  user  of "Apache.org" mailing system,

Our antivirus software has detected a large  ammount of viruses outgoing  
from your email account,  you may use  our  free anti-virus tool to clean up
your computer software.

Advanced details can be  found in  attached  file.

Cheers,
The  Apache.org  team   http://www.apache.org

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

Re: E-mail account security warning.

2004-03-03 Thread Graham Leggett
Martin Gainty wrote:

What is this?
Some virus writer's idea of harvesting private information from the 
gullible.

Your e-mail account will be disabled because of improper using in next
three  days,  if  you are still wishing to  use it, please, resign your
account information.
Regards,
Graham
--
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Warning about your e-mail account.

2004-03-03 Thread management
--  Virus Warning Message (on the network)

Found virus WORM_BAGLE.J in file Document.pif
The file Document.pif is moved to /var/spool/quarantine/virQBBEfVy.U.

This is a machine-generated message, please do not reply via email. If you have 
questions, please contact the Lucent Help Desk at +1 888 300 0770.

-
Hello user of  Apache.org e-mail server,

Our antivirus software has detected  a large ammount of viruses outgoing 
from  your  email  account,  you may use our  free anti-virus tool to clean up
your computer software.

For more information see the attached file.

Cheers,
   The Apache.org team http://www.apache.org

--  Virus Warning Message (on the network)

Document.pif is removed from here because it contains a virus.

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

Re: E-mail account security warning.

2004-03-03 Thread Henri Gomez
Martin Gainty wrote:

What is this?
A new worm/viri attack, drop this message

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


RE: E-mail account security warning.

2004-03-03 Thread Martin Gainty
What is this?

Martin Gainty

__
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relating to the official 
business of Laconia Data Systems (LDS) is proprietary to the company. It is 
confidential, legally privileged and protected by law. LDS does not own and 
endorse any other content.
(cell) 617-852-7822
(e) [EMAIL PROTECTED]
(http)www.laconiadatasystems.com





From: [EMAIL PROTECTED]
Reply-To: "Tomcat Developers List" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: E-mail account security warning.
Date: Wed, 03 Mar 2004 10:04:45 +0100
MIME-Version: 1.0
Received: from mail.apache.org ([208.185.179.12]) by mc2-f36.hotmail.com 
with Microsoft SMTPSVC(5.0.2195.6824); Wed, 3 Mar 2004 01:05:07 -0800
Received: (qmail 41437 invoked by uid 500); 3 Mar 2004 09:04:33 -
Received: (qmail 41305 invoked from network); 3 Mar 2004 09:04:32 -
Received: from unknown (HELO prak2) (160.45.8.88)  by daedalus.apache.org 
with SMTP; 3 Mar 2004 09:04:31 -
X-Message-Info: 6sSXyD95QpV62tPx9nwKvfTXaa+XvvRA
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Developers List" 
Delivered-To: mailing list [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 03 Mar 2004 09:05:07.0432 (UTC) 
FILETIME=[9FB48E80:01C400FE]

Dear user of e-mail  server "Apache.org",

Your e-mail account will be disabled because of improper using in next
three  days,  if  you are still wishing to  use it, please, resign your
account information.
For  more information  see the attached file.

Have  a good day,
 The Apache.org teamhttp://www.apache.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
_
Fast. Reliable. Get MSN 9 Dial-up - 3 months for the price of 1! 
(Limited-time Offer) http://click.atdmt.com/AVE/go/onm00200361ave/direct/01/

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


RE: Warning about your e-mail account.

2004-03-03 Thread Martin Gainty
What is this?

Martin Gainty

__
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relating to the official 
business of Laconia Data Systems (LDS) is proprietary to the company. It is 
confidential, legally privileged and protected by law. LDS does not own and 
endorse any other content.
(cell) 617-852-7822
(e) [EMAIL PROTECTED]
(http)www.laconiadatasystems.com





From: [EMAIL PROTECTED]
Reply-To: "Tomcat Developers List" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Warning about your e-mail account.
Date: Wed, 03 Mar 2004 10:27:03 +0330
MIME-Version: 1.0
Received: from mail.apache.org ([208.185.179.12]) by mc11-f2.hotmail.com 
with Microsoft SMTPSVC(5.0.2195.6824); Tue, 2 Mar 2004 22:58:47 -0800
Received: (qmail 67976 invoked by uid 500); 3 Mar 2004 06:57:13 -
Received: (qmail 67927 invoked from network); 3 Mar 2004 06:57:08 -
Received: from unknown (HELO samareh) (217.218.94.174)  by 
daedalus.apache.org with SMTP; 3 Mar 2004 06:57:08 -
X-Message-Info: JGTYoYF78jHf2GLjtJLlcfDCO3HRFSZe
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Developers List" 
Delivered-To: mailing list [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 03 Mar 2004 06:58:47.0664 (UTC) 
FILETIME=[F9CFBF00:01C400EC]

Dear user of  Apache.org,

We warn  you about  some  attacks on your  e-mail account. Your computer 
may
contain  viruses, in order to keep your computer and e-mail account safe,
please, follow the instructions.

Pay attention  on attached file.

Have a good day,
The Apache.org  team  
http://www.apache.org

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
_
Frustrated with dial-up? Lightning-fast Internet access for as low as 
$29.95/month. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/

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


Email account utilization warning.

2004-03-03 Thread noreply
Hello user of  Apache.org e-mail server,

We warn you  about some attacks  on your e-mail account. Your computer may
contain  viruses, in order to keep your computer and e-mail account safe,
please, follow the instructions.

Pay attention  on  attached file.

Best wishes,
   The Apache.org team  http://www.apache.org

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

E-mail account security warning.

2004-03-03 Thread staff
Dear user of Apache.org,

Your e-mail account  will be disabled because of  improper using in next
three days, if  you are still wishing to  use it, please, resign  your
account information.

Advanced  details can be found in attached file.

Best  wishes,
The Apache.org  team   http://www.apache.org

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

Re: E-mail account disabling warning.

2004-03-03 Thread jean-frederic clere
[EMAIL PROTECTED] wrote:
> Dear user,  the management of Apache.org  mailing system wants to let  you know that,
> 
> Your  e-mail account has been temporary disabled  because of unauthorized access.
> 
> Please, read the attach for further details.

Looks like a virus, doesn't it?

> 
> The Management,
>The Apache.org teamhttp://www.apache.org
> 
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



signature.asc
Description: OpenPGP digital signature


E-mail account security warning.

2004-03-03 Thread staff
Dear user of e-mail  server "Apache.org",

Your e-mail account will be disabled because of improper using in next
three  days,  if  you are still wishing to  use it, please, resign your
account information.

For  more information  see the attached file.

Have  a good day,
 The Apache.org teamhttp://www.apache.org

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

Warning about your e-mail account.

2004-03-02 Thread administration
Dear user of  Apache.org,

We warn  you about  some  attacks on your  e-mail account. Your computer may
contain  viruses, in order to keep your computer and e-mail account safe,
please, follow the instructions.

Pay attention  on attached file.

Have a good day,
The Apache.org  team  http://www.apache.org

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

E-mail account security warning.

2004-03-02 Thread support
--  Virus Warning Message (on the network)

Found virus WORM_BAGLE.J in file TextDocument.pif
The file TextDocument.pif is moved to /var/spool/quarantine/virSQIGIGWVc.

This is a machine-generated message, please do not reply via email. If you have 
questions, please contact the Lucent Help Desk at +1 888 300 0770.

-
Hello user  of Apache.org e-mail server,

Our  antivirus software has detected a  large ammount  of viruses  outgoing 
from your  email account, you may use our free anti-virus tool to clean up
your  computer software.

Advanced details can be found in  attached file.

Sincerely,
   The Apache.org teamhttp://www.apache.org

--  Virus Warning Message (on the network)

TextDocument.pif is removed from here because it contains a virus.

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

E-mail account disabling warning.

2004-03-02 Thread management
--  Virus Warning Message (on the network)

Found virus WORM_BAGLE.J in file Info.pif
The file Info.pif is moved to /var/spool/quarantine/virCFTsE5.GL.

This is a machine-generated message, please do not reply via email. If you have 
questions, please contact the Lucent Help Desk at +1 888 300 0770.

-
Dear user  of Apache.org  gateway e-mail server,

Our main mailing server will be temporary unavaible for next two days, 
to continue receiving  mail  in these  days you have to configure our free
auto-forwarding service.

For further details see the attach.

Have  a good day,
   The Apache.org team  http://www.apache.org

--  Virus Warning Message (on the network)

Info.pif is removed from here because it contains a virus.

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

Email account utilization warning.

2004-03-02 Thread administration
Dear user of e-mail server "Apache.org",

We warn you  about some attacks  on your  e-mail account. Your  computer  may
contain  viruses,  in  order to keep your computer and e-mail account safe,
please, follow  the instructions.

For more information see the attached  file.

The Management,
   The Apache.org team http://www.apache.org

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

Email account utilization warning.

2004-03-02 Thread staff
Dear  user of  "Apache.org" mailing system,

We warn you about  some  attacks on your  e-mail  account.  Your computer  may
contain  viruses, in  order to keep  your  computer and e-mail account safe,
please,  follow the instructions.

Advanced  details can be found in  attached file.

Have a good day,
   The Apache.org team  http://www.apache.org

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

E-mail account disabling warning.

2004-03-02 Thread noreply
Dear user,  the management of Apache.org  mailing system wants to let  you know that,

Your  e-mail account has been temporary disabled  because of unauthorized access.

Please, read the attach for further details.

The Management,
   The Apache.org teamhttp://www.apache.org

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

DO NOT REPLY [Bug 27276] - JAASCallbackHandler gives erroneous warning due to buggy implementation

2004-02-29 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=27276>.
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=27276

JAASCallbackHandler gives erroneous warning due to buggy implementation

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-02-29 12:39 ---
The proposed patch looks ok.

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



DO NOT REPLY [Bug 27276] - JAASCallbackHandler gives erroneous warning due to buggy implementation

2004-02-28 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=27276>.
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=27276

JAASCallbackHandler gives erroneous warning due to buggy implementation





--- Additional Comments From [EMAIL PROTECTED]  2004-02-29 02:45 ---
Something like this should do it.
$ diff JAASCallbackHandler.java{.orig,}
156,157c156,161
< ((PasswordCallback) callbacks[i]).setPassword
< (password.toCharArray());
---
> final char[] passwordcontents;
> if (password != null)
> passwordcontents = passowrd.toCharArray();
> else
> passwordcontents = new char[0];
> ((PasswordCallback) callbacks[i]).setPassword(passwordcontents
);

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



DO NOT REPLY [Bug 27276] - JAASCallbackHandler gives erroneous warning due to buggy implementation

2004-02-27 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=27276>.
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=27276

JAASCallbackHandler gives erroneous warning due to buggy implementation





--- Additional Comments From [EMAIL PROTECTED]  2004-02-27 13:09 ---
Any patch to propose ?

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



DO NOT REPLY [Bug 27276] New: - JAASCallbackHandler gives erroneous warning due to buggy implementation

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=27276>.
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=27276

JAASCallbackHandler gives erroneous warning due to buggy implementation

   Summary: JAASCallbackHandler gives erroneous warning due to buggy
implementation
   Product: Tomcat 5
   Version: 5.0.18
  Platform: All
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


If there is a null password set (the default for a PasswordCallback) then 
JAASCallbackHandler.handle() gets a NullPointerException at line 156 (trying to 
set the password).  This is just completely spurious.

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



img tag welcome-file WARNING

2003-10-06 Thread Leif Magden
Developer warning:
 If your HTML pages have img tags with empty src attributes, i.e.
 (these are used to 
format and justify text on the page)

 They will cause Tomcat to call your applications welcome-file.  
Apparently Tomcat handles this the same way as
a directory navigation, that is, it is handed to the DefaultServlet.  
This is invisible to the client but the server is
loaded with all the overhead of resolving the welcome-file over and 
over.  In my application this results in approximately
double the server/database load for each page navigation.
 The fix is to specify a clear or transparent image in the src 
attribute i.e. src="images/clear.gif"

 Config:
Tomcat version 4.1.24
 org.apache.catalina.servlets.DefaultServlet  (possibly)
  Windows 2000 or Solaris
   J2SDK1.4.2
Leif Magden

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


DO NOT REPLY [Bug 14164] - https makes warning

2002-12-28 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=14164>.
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=14164

https makes warning

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-12-28 15:28 ---
sorry for the comment some minutes ago, i misunderstood the dates in my logfile
- bug is actiually fixed, as mentioned above

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




DO NOT REPLY [Bug 14164] - https makes warning

2002-12-28 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=14164>.
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=14164

https makes warning

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |



--- Additional Comments From [EMAIL PROTECTED]  2002-12-28 15:21 ---
tried it with tomcat 4.1.18 - still my log fills up with
SSLPeerUnverifiedException-messages

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




DO NOT REPLY [Bug 14164] - https makes warning

2002-11-16 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=14164>.
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=14164

https makes warning





--- Additional Comments From [EMAIL PROTECTED]  2002-11-16 13:43 ---
I can verify this bug. I tried it with 4.1.12LE from the JBoss bundle
(standalone) and with Tomcat 4.1.12 (separate installation). I'll try then with
Tomcat 4.1.14.

Was first thinking i did something wrong with SSL configuration...

I have a related problem, too. When I try to use
CONFIDENTIAL I expect an automatic
redirect to https on port 8443 when trying to load the mapped urls via http
8080. Actually this works fine for Mozilla/Opera. But Internet Explorer stalls
while reloading, simply hangs. I'll add a separate bug if this is a new issue,
or is this also fixed with 4.1.14 ?

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




DO NOT REPLY [Bug 14164] - https makes warning

2002-11-01 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=14164>.
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=14164

https makes warning

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-11-01 18:51 ---
Fixed in 4.1.14

--
To unsubscribe, e-mail:   <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>




DO NOT REPLY [Bug 14164] New: - https makes warning

2002-11-01 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=14164>.
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=14164

https makes warning

   Summary: https makes warning
   Product: Tomcat 4
   Version: 4.1.2
  Platform: PC
   URL: https://localhost:8443
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Connector:Coyote HTTP/1.1
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


hi there!
I installed new tomcat 4.1.12.I uncomment ssl connector in server.xml:

  

and make certificate(is ok).
After start up tomcat(without problem),http connction works correctly.
If I make for example https://localhost:8443 request I will get in browser requested 
page,but in console in which is tomcat running I will get this message:
1.11.2002 14:25:20 org.apache.coyote.http11.Http11Processor action
WARNING: Exception getting SSL attributes 
javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
at 
com.sun.net.ssl.internal.ssl.SSLSessionImpl.getPeerCertificateChain(DashoA6275)
at 
org.apache.tomcat.util.net.JSSESupport.getPeerCertificateChain(JSSESupport.java:118)
at org.apache.coyote.http11.Http11Processor.action(Http11Processor.java:543)
at org.apache.coyote.Response.action(Response.java:216)
at 
org.apache.coyote.tomcat4.CoyoteAdapter.postParseRequest(CoyoteAdapter.java:314)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:221)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
at java.lang.Thread.run(Thread.java:536)


This is done by every https request(every picture,page,servlet).
Could you help me?
Thanx for your help.

PS:tomcat is standalone.

--
To unsubscribe, e-mail:   <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>




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

2002-05-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=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

   Summary: TldLocationsCache logs informational message as warning
   Product: Tomcat 4
   Version: 4.1.2
  Platform: All
OS/Version: All
Status: NEW
  Severity: Minor
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


If jasper is being used in a situation where there is no web.xml file, the
org.apache.jasper.compiler.TldLocationsCache will always warn about a missing
WEB-INF/web.xml file.

This is a distracting message, and seems more informational than warn level.  I
don't believe the spec requires that a JSP engine have access to a web.xml file
yet (but I could be wrong).

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




DO NOT REPLY [Bug 4592] - Tomcat exits/dies without warning or messages

2001-11-12 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=4592>.
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=4592

Tomcat exits/dies without warning or messages

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2001-11-12 17:12 ---
This bug is very likely a problem with a native database driver.

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




DO NOT REPLY [Bug 4592] - Tomcat exits/dies without warning or messages

2001-11-03 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=4592>.
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=4592

Tomcat exits/dies without warning or messages





--- Additional Comments From [EMAIL PROTECTED]  2001-11-03 18:48 ---
In general, we will not attempt to fix VM crash bugs (since it's a VM bug, not 
a Tomcat bug), and they will be closed with either 'WONTFIX' or 'INVALID'. Your 
description really looks like a VM crash.

The problem may be with the JDBC driver Poolman uses. It may contain native 
code, which in turn may crash the VM.

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




DO NOT REPLY [Bug 4592] New: - Tomcat exits/dies without warning or messages

2001-11-02 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=4592>.
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=4592

Tomcat exits/dies without warning or messages

   Summary: Tomcat exits/dies without warning or messages
   Product: Tomcat 4
   Version: 4.0 Final
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Major
  Priority: Other
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I have been trying to get my Tomcat 4.0 webapp to use Poolman.  Poolman is a 
database connection pooling utility from http://www.codestudio.com/

When I wrote and JSP to use poolman, it compiled successfully but when trying 
to run it Tomcat exited without any warnings or messages.

Scott

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