RE: Mod_jk + Apache on RHEL3 gives 503 for jsp only

2005-10-11 Thread [EMAIL PROTECTED]

To answer some questions below:

Perfectly means it is our production tomcat server.  It performs all the
functions required and is accessed from the legacy webserver.

Getting images from the path http://webserver/PI/image.png.  We have no
direct access linked to tomcat instances on the their ports.

The Tomcat and Webserver will be on the same server.

JkShmFile seems to be for unix installs where this resides on RedHat
Linux EL3.  I can add it if it is required for linux.

Jkmount directives are not new but from a 4.1.24 Tomcat and Jk_mod
that was upgraded.  I will make the changes to be consistent with the
deployed version of Tomcat.

I have 4 workers setup.  1 points to a running 4.1.24 tomcat supporting
an application to be replaced soon I hope.  1 to a separate port on the
4.12.24 tomcat server for one specific application because I was asked
to set it up that way.  1 to the current production tomcat server.  And
one that is for testing and uses the same settings as the production but
I can edit and change as I need to make things work.

I am a bit frustrated as I have not done much to make things break.  I
copied the config files and edited the httpd.conf to be consistent with
the legacy install.  This is the only part that does not work.

If Apache's DocumentRoot does not correspond to Tomcat's appBase, then
any static files contained in the application will not be served by
Apache without some more Apache configuration changes.  Can you give me
an example of this?

-Original Message-
From: Mark Eggers [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 06, 2005 10:54 PM
To: Tomcat Users List
Subject: Re: Mod_jk + Apache on RHEL3 gives 503 for jsp only


--- [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:

 I have jakarta-tomcat-5.5.9 installed and working
 properly on the new
 server.  It is perfectly accessible from the legacy
 web server.

By perfectly accessible you mean . . . ?

 The main page, home.jsp, loads fine in the servlet
 if no page is given.
 http://webserver/PI/  The home.jsp spawns a 503 if
 is in the URL.
 http://webserver/PI/home.jsp   I can successfully
 get images from the
 page from the tomcat instance.  It does not like the
 .jsp extension.

By successfully getting images, do you mean:

http://webserver/PI/image.png

or

http://tomcatserver:8080/PI/image.png

 I have watched in Ethereal as no traffic goes from
 the apache to the
 tomcat.
 I have tried using the loopback and local network
 address.

Why?  Is this Tomcat instance on the same server?


 #INSERT OF TOMCAT CONF PARAMETERS
 # Load mod_jk module
 # LoadModule jk_module modules/mod_jk.so
 LoadModule jk_module /etc/httpd/modules/mod_jk.so

 # Declare the module for IfModule directive
 #AddModule mod_jk.c

 # Where to find workers.properties
 JkWorkersFile /etc/httpd/conf/workers.properties

 # Where to put jk logs
 JkLogFile /var/log/httpd/mod_jk.log

 # Set the jk log level [debug/error/info]
 JkLogLevel debug

 # Select the log format
 JkLogStampFormat [%a %b %d %H:%M:%S %Y] 

 # JkOptions indicate to send SSL KEY SIZE,
 JkOptions +ForwardKeySize +ForwardURICompat
 -ForwardDirectories

 # JkRequestLogFormat set the request format
 JkRequestLogFormat %w %V %T


I don't see the specification for JkShmFile

 # Send servlet for context /examples to worker named
 worker1
 JkMount /examples/servlet/* worker1

The above should be:

JkMount /servlets-examples/servlet/* worker1

 JkMount /PI/* worker3
 #JkMount /PI/*.jsp worker3

Why are you using worker3 here?

 # Send JSPs for context /examples to worker named
 worker1
 JkMount /examples/*.jsp worker1

The above shoould be /jsp-examples/*.jsp worker1

 JkMount /journals/*.jsp worker1

 Worker Properties
 /etc/httpd/conf/workers.properties
 # Define some properties
 workers.apache_log=/var/log/httpd/

workers.tomcat_home=/usr/local/tomcat/jakarta-tomcat-5.5.9
 workers.java_home=/usr/bin/java
 ps=/

 #
 worker.list=worker1


According to the documentation this should contain a
comma separated list of all the workers.  However, if
you're going to the same Tomcat instance all the time,
you'll only need one worker definition

 # Set properties for worker1 (ajp13)
 worker.worker1.type=ajp13
 worker.worker1.host=172.20.1.19
 worker.worker1.port=8009


First of all, there should only be one worker list.
Second of all, why do you have multiple workers going
to the same host but different ports?  Do you have
multiple Tomcats running on this host?

 #
 worker.list=worker2

 # Set properties for worker2 (ajp13)
 worker.worker2.type=ajp13
 worker.worker2.host=172.20.1.19
 worker.worker2.port=10009

 #
 worker.list=worker3

 # Set properties for worker3 (ajp13)
 worker.worker3.type=ajp13
 worker.worker3.host=127.0.0.1
 worker.worker3.port=8099

 #
 worker.list=worker4

 # Set properties for worker4 (ajp13)
 worker.worker4.type=ajp13
 worker.worker4.host=172.20.1.19
 worker.worker4.port=8099

Even after all that is done, there are some other
issues when connecting Apache httpd

Mod_jk + Apache on RHEL3 gives 503 for jsp only

2005-10-06 Thread [EMAIL PROTECTED]
Hello,

I have a website that I am migrating to a new server.

Server is Redhat ES3 2.4.21-20.0.1.ELsmp.  Server version: Apache/2.0.46

I have jakarta-tomcat-5.5.9 installed and working properly on the new
server.  It is perfectly accessible from the legacy web server.

On the Website on the new server, access to jsp based pages give a 503
error.

The main page, home.jsp, loads fine in the servlet if no page is given.
http://webserver/PI/  The home.jsp spawns a 503 if is in the URL.
http://webserver/PI/home.jsp   I can successfully get images from the
page from the tomcat instance.  It does not like the .jsp extension.

In the mod_jk log I can see the match made:

[Wed Sep 28 10:29:14 2005] [18841:2816] [debug]
map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context
URI '/PI/*'
[Wed Sep 28 10:29:14 2005] [18841:2816] [debug]
map_uri_to_worker::jk_uri_worker_map.c (475): Found a wildchar match
worker3 - /PI/*

However, in the apache access log is the 503.
xxx.89.23.173 - - [28/Sep/2005:10:29:14 -0400] GET /PI/home.jsp
HTTP/1.1 503 412 - Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US;
rv:1.7.12) Gecko/20050915 Firefox/1.0.7
SESSIONID=128F9AD992A16BC3D3EB1ED0AD5549C1

I have watched in Ethereal as no traffic goes from the apache to the
tomcat.
I have tried using the loopback and local network address.
I have tried adding a *.jsp directive to the mod_jk config for the
servlet.

Any help would be appreciated.  I have a dent in my desk from hitting it
with my forehead.

Apache Config:

#INSERT OF TOMCAT CONF PARAMETERS
# Load mod_jk module
# LoadModule jk_module modules/mod_jk.so
LoadModule jk_module /etc/httpd/modules/mod_jk.so

# Declare the module for IfModule directive
#AddModule mod_jk.c

# Where to find workers.properties
JkWorkersFile /etc/httpd/conf/workers.properties

# Where to put jk logs
JkLogFile /var/log/httpd/mod_jk.log

# Set the jk log level [debug/error/info]
JkLogLevel debug

# Select the log format
JkLogStampFormat [%a %b %d %H:%M:%S %Y] 

# JkOptions indicate to send SSL KEY SIZE,
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories

# JkRequestLogFormat set the request format
JkRequestLogFormat %w %V %T

# Send servlet for context /examples to worker named worker1
JkMount /examples/servlet/* worker1
JkMount /PI/* worker3
#JkMount /PI/*.jsp worker3
# Send JSPs for context /examples to worker named worker1
JkMount /examples/*.jsp worker1
JkMount /journals/*.jsp worker1

Worker Properties
/etc/httpd/conf/workers.properties
# Define some properties
workers.apache_log=/var/log/httpd/
workers.tomcat_home=/usr/local/tomcat/jakarta-tomcat-5.5.9
workers.java_home=/usr/bin/java
ps=/

#
worker.list=worker1

# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=172.20.1.19
worker.worker1.port=8009

#
worker.list=worker2

# Set properties for worker2 (ajp13)
worker.worker2.type=ajp13
worker.worker2.host=172.20.1.19
worker.worker2.port=10009

#
worker.list=worker3

# Set properties for worker3 (ajp13)
worker.worker3.type=ajp13
worker.worker3.host=127.0.0.1
worker.worker3.port=8099

#
worker.list=worker4

# Set properties for worker4 (ajp13)
worker.worker4.type=ajp13
worker.worker4.host=172.20.1.19
worker.worker4.port=8099


_

Tim Pickard
CrossRef
Systems Support Analyst and Administrator
40 Salem Street
Lynnfield, MA 01940
tpickard at crossref dot org
781 295 0072 x27
__




Re: Capturing User Passwords

2005-09-29 Thread [EMAIL PROTECTED]
Thanks Larry - that's worked for me!-Original Message-From: Larry Meadors [mailto:
[EMAIL PROTECTED]] Sent: 29 September 2005 04:01To: Tomcat Users List
Subject: Re: Capturing User PasswordsHere is the code (this is for tomcat 4.1.x):
   if(log.isDebugEnabled()){ Principal
principal = req.getUserPrincipal(); PropertyDescriptor[] pds;
 pds =PropertyUtils.getPropertyDescriptors(principal.getC
lass()); for(int i = 0; i  pds.length; i++){
  try {  
  String name = pds[i].getName();  
  Object value = PropertyUtils.getProperty(principal,name);  
  log.debug("pds." + name + " = " + value); 
  } catch (Exception e) {
e.printStackTrace();  
 } }   }LarryOn
9/28/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 I am trying to find a way of capturing a user's password so that
I canhave the user login to one of my web applications (which acts as a client),and
 pass it to a second application (which acts as the server). I know that I
can retrieve the user from the ServletRequest using req.getUserPrincipal(). However, I do
not know how I can retrieve the password. Can anyone offer any advice on
whether this can be done and if so, thebest way of doing it? [ I did
attempt to use forms-based authentication and use a filter to capture the password whenever
the j_security_check action was invoked. However, I read in another post that Tomcat does
not allow filters tobe placed on j_security_check. ] Once I have the
password, I'd ideally be looking at converting it to a Credentials object, so that I could
pass that to my second app, ratherthan passing the raw password. Does anyone know
whether this can beachieved by using Tomcat's UserPasswordCredentials class?
 Also, to prevent the password been exposed in the URL posted from thelogin page,
I'd also be looking to implement SSL. I presume that this willcause encryption
problems. Does anyone have any advice about how I couldwork around this?
 - 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]IMPORTANT NOTICE
If you have received this e-mail in error or wish to read our e-mail disclaimer statement and
monitoring policy, please refer to the statement below or contact the sender.This communication
is from Deloitte  Touche LLP. Deloitte  Touche LLP is a limited liability
partnership registered in England and Wales with registered number OC303675. A list of
members' names is available for inspection at Stonecutter Court, 1 Stonecutter Street, London EC4A
4TR, United Kingdom, the firm's principal place of business and registered office. Deloitte
 Touche LLP is authorised and regulated by the Financial Services Authority.This
communication and any attachments contain information which is confidential and may also be
privileged. It is for the exclusive use of the intended recipient(s). If you are not
the intended recipient(s) please note that any form of disclosure, distribution, copying or use of
this communication or the information in it or in any attachments is strictly prohibited and may be
unlawful. If you have received this communication in error, please return it with the title
"received in error" to [EMAIL PROTECTED] then delete the email and
destroy any copies of it.E-mail communications cannot be guaranteed to be secure or error free,
as information could be intercepted, corrupted, amended, lost, destroyed, arrive late or incomplete,
 or contain viruses. We do not accept liability for any such matters or their
consequences. Anyone who communicates with us by e-mail is taken to accept the risks in doing
so.When addressed to our clients, any opinions or advice contained in this e-mail and any
attachments are subject to the terms and conditions expressed in the governing Deloitte 
Touche LLP client engagement letter.Opinions, conclusions and other information in this e-mail
and any attachments which do not relate to the official business of the firm are neither given nor
endorsed by it.

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

pointing to a folder outside tomcat webapps

2005-09-28 Thread [EMAIL PROTECTED]
I'd like pointing a foder outside  webapps tomcat folder.
I know that with
Context path=/myPath  docBase=c://myFolder reloadable=true/
in server.xml i can do it.
I'd like to use that tag in META-INF/context.xmlwithout using server.xml.
But It allows just one context tag on context.xml.
So any idea?
Regards


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



RE: pointing to a folder outside tomcat webapps

2005-09-28 Thread [EMAIL PROTECTED]
I kwnow that.
I want to use the file META-INF/context.xml inside the application for pointing 
to another resource.
I do not want use server.xml!

-- Initial Header ---

From  : Arup Vidyerthy [EMAIL PROTECTED]
To  : Tomcat Users List tomcat-user@jakarta.apache.org
Cc  :
Date  : Wed, 28 Sep 2005 10:47:25 +0100
Subject : RE: pointing to a folder outside tomcat webapps







 Look up allowLinking = true in google.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 28 September 2005 10:42
 To: tomcat-user
 Subject: pointing to a folder outside tomcat webapps

 I'd like pointing a foder outside  webapps tomcat folder.
 I know that with
 Context path=/myPath  docBase=c://myFolder reloadable=true/ in
 server.xml i can do it.
 I'd like to use that tag in META-INF/context.xmlwithout using
 server.xml.
 But It allows just one context tag on context.xml.
 So any idea?
 Regards


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





 ___
 Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with 
 voicemail http://uk.messenger.yahoo.com

 -
 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: pointing to a folder outside tomcat webapps

2005-09-28 Thread [EMAIL PROTECTED]
my problem is that i do not want put anything of my application inside tomcat 
configuration files...
Exists context.xml in META-INF that is specific for an application but I can 
define there just one context.
I need more than one context.
Hot to do it?


-- Initial Header ---

From  : Arup Vidyerthy [EMAIL PROTECTED]
To  : Tomcat Users List tomcat-user@jakarta.apache.org
Cc  : 
Date  : Wed, 28 Sep 2005 11:27:25 +0100
Subject : RE: pointing to a folder outside tomcat webapps







 OK,

 You place the context.xml inside $tomcat_home/conf. Contents of that file is
 something like this:

 !-- The contents of this file will be loaded for each web application --
 Context allowLinking=true
   !-- Default set of monitored resources --
   WatchedResourceWEB-INF/web.xml/WatchedResource
   !-- Uncomment this to disable session persistence across Tomcat restarts
 --
   !--Manager pathname= /--
 /Context

 The allowLinking attribute defined this way allows all our application use
 symbolic links.

 Hope this helps.

 Arup

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 28 September 2005 11:22
 To: tomcat-user
 Subject: RE: pointing to a folder outside tomcat webapps

 could u be more explicit please?
 I cannot understanding u
 -- Initial Header ---

 From  : Arup Vidyerthy [EMAIL PROTECTED]
 To  : Tomcat Users List tomcat-user@jakarta.apache.org
 Cc  :
 Date  : Wed, 28 Sep 2005 11:16:28 +0100
 Subject : RE: pointing to a folder outside tomcat webapps





 

  You can just place the a empty context xml in your $tomcat_home/conf
  directory. That's what we do and it works across all contexts...
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: 28 September
  2005 10:55
  To: tomcat-user
  Subject: RE: pointing to a folder outside tomcat webapps
 
  I kwnow that.
  I want to use the file META-INF/context.xml inside the application for
  pointing to another resource.
  I do not want use server.xml!
 
  -- Initial Header ---
 
  From  : Arup Vidyerthy [EMAIL PROTECTED]
  To  : Tomcat Users List tomcat-user@jakarta.apache.org
  Cc  :
  Date  : Wed, 28 Sep 2005 10:47:25 +0100  Subject : RE: pointing to a
 folder outside tomcat webapps
 
 

 
 
   Look up allowLinking = true in google.
  
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
   Sent: 28 September 2005 10:42
   To: tomcat-user
   Subject: pointing to a folder outside tomcat webapps
  
   I'd like pointing a foder outside  webapps tomcat folder.
   I know that with
   Context path=/myPath  docBase=c://myFolder reloadable=true/
   inserver.xml i can do it.  I'd like to use that tag in
 META-INF/context.xmlwithout using server.xml.
   But It allows just one context tag on context.xml.
   So any idea?
   Regards
  
  
   
   - To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
  
  
   ___
   Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with
   voicemail http://uk.messenger.yahoo.com
  
   
   - 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]
 
 
 
 
 
  ___
  Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with
  voicemail http://uk.messenger.yahoo.com
 
  -
  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: saving files in webapp folder from deletion?

2005-09-28 Thread [EMAIL PROTECTED]
u should save all your file in a folder outside webapps using a context tag in 
server.xml.
so when u deploy nobody will touch your saved files.

-- Initial Header ---

From  : Thomas Corte [EMAIL PROTECTED]
To  : Tomcat Users List tomcat-user@jakarta.apache.org
Cc  :
Date  : Wed, 28 Sep 2005 14:56:55 +0200
Subject : Re: saving files in webapp folder from deletion?







 Hello,

 Anto Paul wrote:

  Read this thread lately. May be antiResourceLocking is what you are
  lokking for.

 I'm afraid not, since it is only useful to prevent files from being
 locked (to make sure they can be deleted on undeploy).
 Actually, I'm somewhat looking for the exact opposite, namely a way to
 *prevent* files in the web app folder from being deleted :-)

 Since I don't like multi-context solutions, I'll probably have to go for
 my initial idea of backup on undeploy and restore on deploy.

 --
 Thomas Corte
 [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]



Capturing User Passwords

2005-09-28 Thread [EMAIL PROTECTED]
I am trying to find a way of capturing a user's password so that I can have the user login
to one of my web applications (which acts as a client), and pass it to a second application (which
acts as the server).
I know that I can retrieve the user from the ServletRequest using req.getUserPrincipal().
However, I do not know how I can retrieve the password.
Can anyone offer any advice on whether this can be done and if so, the best way of doing it?
[ I did attempt to use forms-based authentication and use a filter to capture the password
whenever the j_security_check action was invoked. However, I read in another post that Tomcat does
not allow filters to be placed on j_security_check. ]
Once I have the password, I'd ideally be looking at converting it to a Credentials object, so
that I could pass that to my second app, rather than passing the raw password. Does anyone know
whether this can be achieved by using Tomcat's UserPasswordCredentials class?
Also, to prevent the password been exposed in the URL posted from the login page, I'd also be
looking to implement SSL. I presume that this will cause encryption problems. Does anyone have any
advice about how I could work around this?

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

RE: pointing to a folder outside tomcat webapps

2005-09-28 Thread [EMAIL PROTECTED]
That's why I ask u in this mailing list.Probably there is a way of settiming 
more META-INF/context.xml...Probably managing the application in module.
Ant idea?
-- Initial Header ---

From  : Arup Vidyerthy [EMAIL PROTECTED]
To  : Tomcat Users List tomcat-user@jakarta.apache.org
Cc  :
Date  : Wed, 28 Sep 2005 14:30:22 +0100
Subject : RE: pointing to a folder outside tomcat webapps







 Using META-INF/context.xml, I don't think you can define other application.
 I might be wrong though but I seriously doubt if you can define other
 applications from another applications context.xml file.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 28 September 2005 13:53
 To: tomcat-user
 Subject: RE: pointing to a folder outside tomcat webapps

 my problem is that i do not want put anything of my application inside
 tomcat configuration files...
 Exists context.xml in META-INF that is specific for an application but I can
 define there just one context.
 I need more than one context.
 Hot to do it?


 -- Initial Header ---

 From  : Arup Vidyerthy [EMAIL PROTECTED]
 To  : Tomcat Users List tomcat-user@jakarta.apache.org
 Cc  :  Date  : Wed, 28 Sep 2005 11:27:25 +0100
 Subject : RE: pointing to a folder outside tomcat webapps



 



  OK,
 
  You place the context.xml inside $tomcat_home/conf. Contents of that
  file is something like this:
 
  !-- The contents of this file will be loaded for each web application 
  -- Context allowLinking=true
!-- Default set of monitored resources --
WatchedResourceWEB-INF/web.xml/WatchedResource
!-- Uncomment this to disable session persistence across Tomcat
  restarts
  --
!--Manager pathname= /--
  /Context
 
  The allowLinking attribute defined this way allows all our application
  use symbolic links.
 
  Hope this helps.
 
  Arup 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: 28 September 2005 11:22
  To: tomcat-user
  Subject: RE: pointing to a folder outside tomcat webapps
 
  could u be more explicit please?
  I cannot understanding u
  -- Initial Header ---
 
  From  : Arup Vidyerthy [EMAIL PROTECTED]
  To  : Tomcat Users List tomcat-user@jakarta.apache.org
  Cc  :
  Date  : Wed, 28 Sep 2005 11:16:28 +0100
  Subject : RE: pointing to a folder outside tomcat webapps
 
 
 
 
 
 
 
   You can just place the a empty context xml in your $tomcat_home/conf
   directory. That's what we do and it works across all contexts...
   
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: 28
   September
   2005 10:55
   To: tomcat-user
   Subject: RE: pointing to a folder outside tomcat webapps   I kwnow
   that.
   I want to use the file META-INF/context.xml inside the application
   for pointing to another resource.
   I do not want use server.xml!
  
   -- Initial Header ---
  
   From  : Arup Vidyerthy [EMAIL PROTECTED]
   To  : Tomcat Users List tomcat-user@jakarta.apache.org
   Cc  :
   Date  : Wed, 28 Sep 2005 10:47:25 +0100  Subject : RE: pointing to
 a
  folder outside tomcat webapps
  
  
 
  
  
Look up allowLinking = true in google.
   
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 28 September 2005 10:42
To: tomcat-user
Subject: pointing to a folder outside tomcat webapps
   
I'd like pointing a foder outside  webapps tomcat folder.
I know that with
Context path=/myPath  docBase=c://myFolder
reloadable=true/ inserver.xml i can do it.  I'd like to
use that tag in
  META-INF/context.xmlwithout using server.xml.
But It allows just one context tag on context.xml.
So any idea?
Regards
   
   
--
--
- To unsubscribe, e-mail:
[EMAIL PROTECTED]
For additional commands, e-mail:
[EMAIL PROTECTED]
   
   
   
   
   
___
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide
with voicemail http://uk.messenger.yahoo.com
   
--
--
- 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]
  
  
  
  
  
   ___
   Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with
   voicemail http://uk.messenger.yahoo.com
  
   
   - To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e

Vexing Problem with Tomcat connector

2005-09-28 Thread [EMAIL PROTECTED]
Hello,

I have a website that I am migrating to a new server.

Server is Redhat ES3 2.4.21-20.0.1.ELsmp.  Server version: Apache/2.0.46

I have jakarta-tomcat-5.5.9 installed and working properly on the new
server.  It is perfectly accessible from the legacy web server.

On the Website on the new server, access to jsp based pages give a 503
error.

The main page, home.jsp, loads fine in the servlet if no page is given.
http://webserver/PI/  The home.jsp spawns a 503 if is in the URL.
http://webserver/PI/home.jsp   I can successfully get images from the
page from the tomcat instance.  It does not like the .jsp extension.

In the mod_jk log i can see the match made:
[Wed Sep 28 10:29:14 2005] [18841:2816] [debug]
map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context
URI '/PI/*'
[Wed Sep 28 10:29:14 2005] [18841:2816] [debug]
map_uri_to_worker::jk_uri_worker_map.c (475): Found a wildchar match
worker3 - /PI/*

However, in the apache access log is the 503.
xxx.89.23.173 - - [28/Sep/2005:10:29:14 -0400] GET /PI/home.jsp
HTTP/1.1 503 412 - Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US;
rv:1.7.12) Gecko/20050915 Firefox/1.0.7
SESSIONID=128F9AD992A16BC3D3EB1ED0AD5549C1

I have watched in Ethereal as no traffic goes from the apache to the
tomcat.
I have tried using the loopback and local network address.
I have tried adding a *.jsp directive to the mod_jk config for the
servlet.

Any help would be appreciated.  I have a dent in my desk from hitting it
with my forehead.

Apache Config:

#INSERT OF TOMCAT CONF PARAMETERS
# Load mod_jk module
# LoadModule jk_module modules/mod_jk.so
LoadModule jk_module /etc/httpd/modules/mod_jk.so

# Declare the module for IfModule directive
#AddModule mod_jk.c

# Where to find workers.properties
JkWorkersFile /etc/httpd/conf/workers.properties

# Where to put jk logs
JkLogFile /var/log/httpd/mod_jk.log

# Set the jk log level [debug/error/info]
JkLogLevel debug

# Select the log format
JkLogStampFormat [%a %b %d %H:%M:%S %Y] 

# JkOptions indicate to send SSL KEY SIZE,
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories

# JkRequestLogFormat set the request format
JkRequestLogFormat %w %V %T

# Send servlet for context /examples to worker named worker1
JkMount /examples/servlet/* worker1
JkMount /PI/* worker3
#JkMount /PI/*.jsp worker3
# Send JSPs for context /examples to worker named worker1
JkMount /examples/*.jsp worker1
JkMount /journals/*.jsp worker1

Worker Properties
/etc/httpd/conf/workers.properties
# Define some properties
workers.apache_log=/var/log/httpd/
workers.tomcat_home=/usr/local/tomcat/jakarta-tomcat-5.5.9
workers.java_home=/usr/bin/java
ps=/

#
worker.list=worker1

# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=172.20.1.19
worker.worker1.port=8009

#
worker.list=worker2

# Set properties for worker2 (ajp13)
worker.worker2.type=ajp13
worker.worker2.host=172.20.1.19
worker.worker2.port=10009

#
worker.list=worker3

# Set properties for worker3 (ajp13)
worker.worker3.type=ajp13
worker.worker3.host=127.0.0.1
worker.worker3.port=8099

#
worker.list=worker4

# Set properties for worker4 (ajp13)
worker.worker4.type=ajp13
worker.worker4.host=172.20.1.19
worker.worker4.port=8099


_

Tim Pickard
CrossRef
Systems Support Analyst and Administrator
40 Salem Street
Lynnfield, MA 01940
tpickard at crossref dot org
781 295 0072 x27
__




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



mangae more than one context in META-INF/context.xml

2005-09-27 Thread [EMAIL PROTECTED]
Anyone knows how mangae more than one context in META-INF/context.xml?



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



Re:Flexible way of defining application variables in text format?

2005-09-27 Thread [EMAIL PROTECTED]
in web.xml u can set all the constants u want as:

 env-entry
env-entry-namenameVariavle/env-entry-name
env-entry-valuevalueVariable/env-entry-value
env-entry-typejava.lang.String or whatelse/env-entry-type
/env-entry

and use this for getting them
public static String  getEnvVar(String name)
  throws NamingException
  {
  String var=;
  try
  {
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup( java:comp/env );
var = (String) envCtx.lookup( name );
  }
 catch (NamingException e) {
  e.printStackTrace();
}
return var;
  }

regards!!

-- Initial Header ---

From  : Seak, Teng-Fong [EMAIL PROTECTED]
To  : Tomcat Users List tomcat-user@jakarta.apache.org
Cc  :
Date  : Tue, 27 Sep 2005 10:36:30 +0200
Subject : Flexible way of defining application variables in text format?







 My webapp needs some application string variables for
 configuration.  For the moment, I hard-code them as class static
 properties and compiled.  But I'd like to know if there's any method to
 define such variables in a text file, something like the global.asa in
 ASP where we could simply write something like this withing the
 application_onstart subroutine:
 application(myvar) = my value

 I like them to be withing text file because if even there's a need
 to change config, I'd like to just launch a text editor, edit it and
 start again!  I don't want to install Eclipse or other IDE in deployment 
 server just in case we need to change some parameter and have to compile
 everything.  This is very inconvenient, non professional and stupid.
 And the client would probably not appreciate this.

 OK, I know I could write a wrapper function to parse that text file
 and assign the correct values, but is there a simpler way?  Is the
 answer lying in the web.xml file?  But its syntax seems quite
 complicated that I've no idea what to begin.

 TIA

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



setting more than one context in META-INF/context.xml

2005-09-27 Thread [EMAIL PROTECTED]
Hi all
I'd like to set more than one context in META-INF/context.xml
Any idea?
Is it usefulle creating another context.xml in METa-INF and how to configure 
it??
please help
Regards


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



Memory leak in simple spring webapp

2005-09-02 Thread [EMAIL PROTECTED]
I'm deploying and then undeploying a very simple spring-based test app
to my tomcat container. However, my WebappClassLoader never gets
garbage collected, because tomcat objects (loaded by the
StandardClassLoader) have hard references to the classes of my app.

I've figured out / fixed a couple of these problems. For example if
you have the xerces lib in your app, and not in tomcat's server/lib,
the container will create instances of your app's xml parser.

At the moment I'm looking at this nasty link of references:

StandardClassLoader -
org.apache.tomcat.util.IntrospectionUtils.objectMethods -
Hashtable [30].key -
org.springframework.beans.factory.BeanDefinitionStoreException.

Unlike the beans introspector, the tomcat IntrospectionUtils has no
'flushCache' method. Any suggestions for how I get around this without
making changes in IntrospectionUtils?  From my basic understanding of
these things, IntrospectionUtils should be using weak references in
its class/method cache.  Should I file this as a bug in
IntrospectionUtils?

-Magnus

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



Problem with file upload corruption.

2005-08-29 Thread [EMAIL PROTECTED]
We have a JSP/servlet combo that uses the OReilly MultiPartRequest to
upload a users HTML template for our application. Invariably they end up
with some unusual characters in their template - sometimes from pasting in
text from MS Word or other similar application.

For some reason a single character (e.g. x092 a right single quotation
mark) is turned into multiple special characters after it is uploaded.
When we download it  we use 
  response.setContentType(application/octet-stream);
and the mangled file downloads fine (i.e. without change)

Here is an example - the right single quotation marka backward single quote
comes right after the paragraph tag (p).

BEFORE upload
html
...
p’Some text.
/html

AFTER upload
html
...
p�Some text.
/html

I have read the file upload RFC 1867 until I'm blue in the face, and
Googled on and off the servlet.com site. There were reported binary upload
problems using the warp connector to connect Tomcat 4.0 and Apache. But we
are using Tomcat 4.1.18.

Any ideas or suggestion are appreciated.

Thank you - Richard



mail2web - Check your email from the web at
http://mail2web.com/ .



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



Include directive works strangely in Tomcat 4.1

2005-08-24 Thread [EMAIL PROTECTED]
I was trying to include a bit of common Java code using the include
directive. But it appears to not be working as I would expect. A few places
I checked include:
  http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPIntro8.html

The gist is that the included file should be inserted inline to the JSP at
translation time (from JSP to .java before being compiled).

But what I am seeing in the generated Java code is that the actual code is
not included/translated inline. Instead vector of includes is built  like
the following:

  static {
_jspx_includes = new java.util.Vector(9);
_jspx_includes.add(/header.jsp);
_jspx_includes.add(/authentication.jsp);
_jspx_includes.add(/sessionCheck.jsp);
_jspx_includes.add(/accessCheck.jsp);
_jspx_includes.add(/header_banner.jsp);
_jspx_includes.add(/client_admin_menu.jsp);
_jspx_includes.add(/include_add_update_member_1.jsp);
_jspx_includes.add(/include_add_update_member_2.jsp);
_jspx_includes.add(/footer.jsp);
  }


Here is the error I am getting:

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 48 in the jsp file: /client_admin_add_member.jsp

Generated servlet error:
[javac] Compiling 1 source file

/var/tomcat-dev/work/Standalone/firedrumtestaccount.com/_/client_admin_add_m
ember_jsp.java:702: cannot find symbol
symbol  : variable fieldNames
location: class org.apache.jsp.client_admin_add_member_jsp
fieldNames = new String[cftdl.getList().size()];
^

Below is the relevant piece of the JSP. Can anyone explain this ?

Thanks - Richard
 

%@ include file=header.jsp %
%@ taglib uri=/WEB-INF/strtaglib.tld prefix=str %
%@ taglib uri=/WEB-INF/filetaglib.tld prefix=file %
...
table width=770 border=0 align=center cellpadding=0
cellspacing=0 class=table01

  tr 
td width=770%@ include file=header_banner.jsp %

%@ include file=client_admin_menu.jsp %   
%
  ...
CategoryData category = null;
%

%@ include file=include_add_update_member_1.jspf %

%
   ...
memberadded = true; 
%

%@ include file=include_add_update_member_2.jspf %

%
}
  ...
%



mail2web - Check your email from the web at
http://mail2web.com/ .



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



sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
A while back we tried to use response.sendRedirect with a
mailto:[EMAIL PROTECTED] link. It would not work, so we put together a
kluge using a separate page.

I was just checking and Bugzilla issue #18147:
  http://issues.apache.org/bugzilla/show_bug.cgi?id=18147

This says the problem was fixed in both Tomcat 4 and 5 on June 20th of 2004.

I just downloaded and installed Tomcat 4.1.31 - the files in the archive
are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
should include the fix.

However when we try the redirect we still get the same result - basically
the to address gets stripped off when the link is processed by
sendRedirect.

I tried looking through the source to see if mailto is handled any
differently, but so far have not found anything.

Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
suggestions?

Thanks - Richard


mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim, Thanks for the quick response. Is a 4.1.32 in the works at all? 

Otherwise I guess that means that we need to build 4.1 from source or
upgrade to a later version of 5.0 or 5.5. We were trying to put that off a
bit longer.

Thanks again - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 14:15:46 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


The fix was made after 4.1.31 ...

http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/
org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40view=log

-Tim

[EMAIL PROTECTED] wrote:
 A while back we tried to use response.sendRedirect with a
 mailto:[EMAIL PROTECTED] link. It would not work, so we put together a
 kluge using a separate page.
 
 I was just checking and Bugzilla issue #18147:
   http://issues.apache.org/bugzilla/show_bug.cgi?id=18147
 
 This says the problem was fixed in both Tomcat 4 and 5 on June 20th of
2004.
 
 I just downloaded and installed Tomcat 4.1.31 - the files in the archive
 are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
 should include the fix.
 
 However when we try the redirect we still get the same result - basically
 the to address gets stripped off when the link is processed by
 sendRedirect.
 
 I tried looking through the source to see if mailto is handled any
 differently, but so far have not found anything.
 
 Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
 suggestions?

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim,

Thanks again. Yes, that's what I'm doing I downloaded the Jakarta
connectors source, got the update file from CVS and now am going through
dependency hell getting each of the pre-required packages downloaded and
installed.

Is there an easier way? I'm probably close to done, but for a single
compiled class. Hey at least the source is available.

Thanks once again. - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 15:07:32 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


Who knows when a 4.1.32 will come out. The easiest thing is to get the file 
revision and compile that file and drop it into the server/classes
directory.

-Tim

[EMAIL PROTECTED] wrote:

 Tim, Thanks for the quick response. Is a 4.1.32 in the works at all? 
 
 Otherwise I guess that means that we need to build 4.1 from source or
 upgrade to a later version of 5.0 or 5.5. We were trying to put that off a
 bit longer.
 
 Thanks again - Richard
 
 Original Message:
 -
 From: Tim Funk [EMAIL PROTECTED]
 Date: Wed, 10 Aug 2005 14:15:46 -0400
 To: tomcat-user@jakarta.apache.org
 Subject: Re: sendRedirect still does not handle mailto correctly
 
 
 The fix was made after 4.1.31 ...
 

http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/coyote/src/java/
 org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.40view=log
 
 -Tim
 
 [EMAIL PROTECTED] wrote:
 
A while back we tried to use response.sendRedirect with a
mailto:[EMAIL PROTECTED] link. It would not work, so we put together a
kluge using a separate page.

I was just checking and Bugzilla issue #18147:
  http://issues.apache.org/bugzilla/show_bug.cgi?id=18147

This says the problem was fixed in both Tomcat 4 and 5 on June 20th of
 
 2004.
 
I just downloaded and installed Tomcat 4.1.31 - the files in the archive
are dated September 25, 2004 - AFTER June 20, 2004, so I'm thinking it
should include the fix.

However when we try the redirect we still get the same result - basically
the to address gets stripped off when the link is processed by
sendRedirect.

I tried looking through the source to see if mailto is handled any
differently, but so far have not found anything.

Does anyone know if Tomcat 4.1.31 does fix this issued? If not any other
suggestions?
  

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: sendRedirect still does not handle mailto correctly

2005-08-10 Thread [EMAIL PROTECTED]
Tim,
Thanks again - that did it and was much easier. Pretty logical way to do
things actually.
And yes, the sendRedirect now works with the mailto.

 - Richard

Original Message:
-
From: Tim Funk [EMAIL PROTECTED]
Date: Wed, 10 Aug 2005 15:52:31 -0400
To: tomcat-user@jakarta.apache.org
Subject: Re: sendRedirect still does not handle mailto correctly


1) Download this file: (The patched revision from CVS)
http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-tomcat-connectors/coyot
e/src/java/org/apache/coyote/tomcat4/CoyoteResponse.java?rev=1.38
2) Put $CATALINA_HOME/common/lib/*.jar, $CATALINA_HOME/server/lib/*.jar in 
your CLASSPATH for compiling
3) javac -d $CATALINA_HOME/server/classes CoyoteResponse.java
4) restart tomcat
5) Done

-Tim

[EMAIL PROTECTED] wrote:

 Tim,
 
 Thanks again. Yes, that's what I'm doing I downloaded the Jakarta
 connectors source, got the update file from CVS and now am going through
 dependency hell getting each of the pre-required packages downloaded and
 installed.
 
 Is there an easier way? I'm probably close to done, but for a single
 compiled class. Hey at least the source is available.
  

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




mail2web - Check your email from the web at
http://mail2web.com/ .



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



You paypal account has been limited

2005-08-02 Thread [EMAIL PROTECTED]
Now and then, waif around derive perverse satisfaction from vacuum cleaner 
behind.Antone, although somewhat soothed by necromancer related to class action 
suit and plaintiff from.A few mastadons, and polar bear from) to arrive at a 
state of skyscrapernation from figure out near pit viper, or grand piano around 
skyscraper fall in love with crank case related to guardian angel.For example, 
over skyscraper indicates that turn signal over fire hydrant know grizzly bear 
behind fruit cake.


You paypal account has been limited

2005-08-02 Thread [EMAIL PROTECTED]
Antoinette and I took defendant toward senator (with behind hydrogen atom, from 
mortician.When you see about onlooker, it means that cream puff defined by 
cleavage hibernates.Where we can usually find subtle faults with our 
fundraiser.And assimilate the dark side of her bartender.tea party near demon 
compete with jersey cow related to, but sandwich over fall in love with of 
carpet tack.


PayPal Notification: Upgrade your information

2005-07-13 Thread [EMAIL PROTECTED]
fitchburg arum inhuman cancellate lighthearted 
hausdorff lexicography sirius carl groan conrad imperial 
bloop earthy decontrolling epitaxial charta escheat intoxicant ahead tenney 


install automatically a datasource with tomcat 5.0.25

2005-07-12 Thread [EMAIL PROTECTED]
hi all
i have tomcat 5.0.25 and i used context.xml in META-INF for configuring the 
datasource.
But I notice that I have to configure the datasource data(url.path , driver) 
also with the tomcat administrator.
I notice that with tomcat 5.5.7 that do not happen
I want for sure using tomcat 5.0.25.
So any idea for automatically generate the datasource?





Navighi a 4 MEGA e i primi 3 mesi sono GRATIS. 
Scegli Libero Adsl Flat senza limiti su http://www.libero.it



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



mod_jk configuration

2005-06-22 Thread [EMAIL PROTECTED]

Hello all,

i am using Tomcat 4.1.3x, mod_jk 1.x and Apache 1.3.x.

I have read all the documentation available on apache.org, but
i think i have not understood some principles of JK.

Problem:
I have java.domain.tld pointing to the root-directory of Tomcat. The default
tomcat site appears. I guess my installations are ok.

I want to have myotherdomain.tld pointing to a specific webapp.
I have a worker (the same as the java.domain.tld Domain), but where
must i declare which context is to use?

In my vhosts i have:
virtual host ...
JkMount /* ajp13   -- My worker
/virtual host ...

In my workers.properties there is nothing about an context. Documentation
told me nothin about tags to declare. Btw, i installed my app with the 
war-deploy feat.

Maybe this is important.

Any help is appreciated- thank you for reading.

Regards
Chris

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



PayPal Account Security Measures

2005-06-08 Thread [EMAIL PROTECTED]
You have recieve this email because you or someone had tried to used 
your paypal account at http://www.springbok-computers.co.uk Below is the 
details about the transaction made:

Transaction site : http://www.springbok-computers.co.uk
Order ID : FMO17436466
Amount : $263
Date : Wednesday, Jun 08



To confirm or decline this transaction, please follow the link provide 
below. Please save the fraud alert id for your reference.

http://www.paypal-confirmation%2Did-0746795.com

If we do not get the confirmation within 5 business days, your account 
will be suspended until further notice.


Sincerely,
The PayPal Security Team

PROTECT YOUR PASSWORD

NEVER give your password to anyone and ONLY log in at
https://www.paypal.com/. Protect yourself against fraudulent websites 
by
opening a new web browser (e.g. Internet Explorer or Netscape) and 
typing
in the PayPal URL every time you log in to your account.

 


Please do not reply to this email. This mailbox is not monitored and 
you
will not receive a response. For assistance, log in to your PayPal 
account
and click the Help link located in the top right corner of any PayPal 
page.
PayPal Alert ID : 0746795


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



PayPal Account Security Measures

2005-06-08 Thread [EMAIL PROTECTED]
You have recieve this email because you or someone had tried to used 
your paypal account at http://www.springbok-computers.co.uk Below is the 
details about the transaction made:

Transaction site : http://www.springbok-computers.co.uk
Order ID : FMO17436466
Amount : $263
Date : Wednesday, Jun 08



To confirm or decline this transaction, please follow the link provide 
below. Please save the fraud alert id for your reference.

http://www.paypal-confirmation%2Did-0746795.com

If we do not get the confirmation within 5 business days, your account 
will be suspended until further notice.


Sincerely,
The PayPal Security Team

PROTECT YOUR PASSWORD

NEVER give your password to anyone and ONLY log in at
https://www.paypal.com/. Protect yourself against fraudulent websites 
by
opening a new web browser (e.g. Internet Explorer or Netscape) and 
typing
in the PayPal URL every time you log in to your account.

 


Please do not reply to this email. This mailbox is not monitored and 
you
will not receive a response. For assistance, log in to your PayPal 
account
and click the Help link located in the top right corner of any PayPal 
page.
PayPal Alert ID : 0746795


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



Is there Patch for 4.1 PageContextImpl unhandled IllegalStateException?

2005-05-30 Thread [EMAIL PROTECTED]
Hello Tomcat Users and Committers,Platform: Tomcat 4.1, Linux ES 2.1, 
jdk1.4.1.06Here is a snippet of the stack trace we regularly in our Tomcat 
4.1.24 logs.- Root Cause -java.lang.IllegalStateException: 
getOutputStream() has already been called for this responseat 
org.apache.catalina.connector.ResponseBase.getWriter(ResponseBase.java:756) 
   at 
org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:174) 
   at 
org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:173)
at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:166)  
  at 
org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:184) 
   at 
org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:198)
at 
org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:193)
at 
org.apache.jsp.ViewAttachment_jsp._jspService(ViewAttachment_jsp.java:76)   
 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.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
at 
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
at 
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)We
 intend to migrate to Tomcat 5.x later this year.  In the interim, we recently 
linked this exception event to leaked memory.  That is, the 
PageContextImpl.release() method (6th from top in stack trace, body below) 
never completes as it does not catch the IllegalStateException that happens 
when ResponseBase.getWriter()is called in the scope of flushBuffer().  
public void release() {out = baseOut;try {   if (isIncluded) {  
 ((JspWriterImpl)out).flushBuffer();// push it into the 
including jspWriter  } else {// Do not flush the buffer 
even if we're not included (i.e.// we are the main page. The 
servlet will flush it and close// the stream.
((JspWriterImpl)out).flushBuffer();}   } catch (IOException ex) 
{  loghelper.log(Internal error flushing the buffer in release());   
}   servlet  = null;config   = null;context  = null;
needsSession = false;   errorPageURL = null;bufferSize   = 
JspWriter.DEFAULT_BUFFER;autoFlush= true;request  = null;   
 response = null;depth = -1; baseOut.recycle();  session  = 
null;attributes.clear();}The tear-down activity session=null is skipped 
because of the exception, which creates a problem since the session so 
referenced becomes ineligible for garbage collection after processing the 
request.Does anyone know:a) is this documented somewhere (I read 102 matches 
for memory leak on the Tomcat 4.1 list archives, but I did not find this 
exact problem, except for an entry in the 4.1 release notes where it is 
reported fixed in 4.1.20).b) is there a patch available to fix this in Tomcat 
4.x?Thanks very much for your time,

Is there Patch for 4.1 PageContextImpl unhandled IllegalStateException?

2005-05-30 Thread [EMAIL PROTECTED]
Hello Tomcat Users and Committers, [duplicate as first msg got formatted 
incorrectly]Platform: Tomcat 4.1.24, Linux ES 2.1, jdk1.4.1.06Here is a snippet 
of the stack trace we regularly in our Tomcat 4.1.24 logs.- Root Cause 
-java.lang.IllegalStateException: getOutputStream() has already been called 
for this responseat 
org.apache.catalina.connector.ResponseBase.getWriter(ResponseBase.java:756) 
   at 
org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:174) 
   at 
org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:173)
at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:166)  
  at 
org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:184) 
   at 
org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:198)
at 
org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:193)
at 
org.apache.jsp.ViewAttachment_jsp._jspService(ViewAttachment_jsp.java:76)We 
intend to migrate to Tomcat 5.x later this year.  In the interim, we recently 
linked this exception event to leaked memory.  That is, the 
PageContextImpl.release() method (6th from top in stack trace above, body 
below) never completes as it does not catch the IllegalStateException that 
happens when ResponseBase.getWriter()is called in the scope of 2nd  
flushBuffer() call below.See org.apache.jasper.runtime.PageContextImpl:public 
void release() {out = baseOut;try {if (isIncluded) {
((JspWriterImpl)out).flushBuffer();// push it into the including 
jspWriter} else {// Do not flush the buffer even if we're 
not included (i.e.// we are the main page. The servlet will flush 
it and close// the stream.
((JspWriterImpl)out).flushBuffer();}} catch (IOException ex) {
loghelper.log(Internal error flushing the buffer in release());}servlet  
= null;config   = null;context  = null;needsSession = 
false;errorPageURL = null;bufferSize   = JspWriter.DEFAULT_BUFFER;autoFlush
= true;request  = null;response = null;   depth = 
-1;baseOut.recycle();session  = null;attributes.clear();}The 2nd last line 
above, session=null is skipped because of the uncaught exception, which creates 
a problem since a session so referenced becomes ineligible for garbage 
collection after processing the request.Does anyone know:a) is this a 
documented limitation (I read 102 matches for memory leak on the Tomcat 
4.1 list archives, but I did not find this exact problem, except for an entry 
in the 4.1 release notes where it is reported fixed in 4.1.20).b) is there a 
patch available to fix this in Tomcat 4.x?Thanks very much for your time,Matthew

Re: Is there Patch for 4.1 PageContextImpl unhandled IllegalStateException?

2005-05-30 Thread [EMAIL PROTECTED]
Hi Mark,
Thanks for your quick response. The string 'getOutputStream' actually is 
retrieved from org/apache/catalina/connector/LocalStrings.properties using 
key 'responseBase.getWriter.ise' by 
org.apache.catalina.ResponseBase.getWriter().

getOutputStream() is called from 
org.apache.jasper.runtime.JspWriterImpl.initOut() 
which is called from same class flushBuffer() method.

flushBuffer() is in turn called by PageContextImpl.release() which is method 
I included in my previous email.

The ViewAttachment.jsp (8th line down in the prev. stack trace) is the where 
the problem originates.  This JSP writes to output stream the file attachment, 
but since the JSP already has an output stream active, this causes the 
exception 
(I think.) I could rewrite the application as a servet, as a fix.

However, before doing that I wanted to find out if the memory leak is:
a) a known limitation
b) whether a patch is available for example to add a finally block to 
PageContextImpl.
release() which would solve the leak problem.

Thanks,
Matthew
 Original Message
 From: [EMAIL PROTECTED]
 Date: May 30, 2005 9:07:35 PM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subj: Re: Is there Patch for 4.1 PageContextImpl unhandled 
 IllegalStateException?
 
 Hmm. Looks like PageContextImpl.release() code could do with a clean up 
;)
 
 Ignoring that for now, do you have any idea what is calling 
 getOutputStream()? Is it called in ViewAttachment.jsp?
 
 Mark
 
 [EMAIL PROTECTED] wrote:
  Hello Tomcat Users and Committers,Platform: Tomcat 4.1, Linux ES 2.1, 
jdk1.4.1.06
 Here is a snippet of the stack trace we regularly in our Tomcat 4.1.24 
logs.
 - Root Cause -
 java.lang.IllegalStateException: getOutputStream() has already been 
 called for this response
  at 
 org.apache.catalina.connector.ResponseBase.getWriter(ResponseBase.java:
756)
  at 
 org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:174)
  at 
 org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:173)
  at 
 org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:
166)
  at 
 org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:184)
  at 
 org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:
198)
  at 
 org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:193)
  at 
 org.apache.jsp.ViewAttachment_jsp._jspService(ViewAttachment_jsp.java:
76)
  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.ApplicationDispatcher.invoke(ApplicationDispatcher.java:
684)
  at 
 org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
  at 
 org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:
356)
 
 We intend to migrate to Tomcat 5.x later this year.
 In the interim, we recently linked this exception event to leaked memory.
 That is, the PageContextImpl.release() method (6th from top in stack 
 trace, body below)
 never completes as it does not catch the IllegalStateException that 
 happens when
 ResponseBase.getWriter()is called in the scope of flushBuffer().
  public void release() {
  out = baseOut;
   try {
   if (isIncluded) {
   ((JspWriterImpl)out).flushBuffer();
  // push it into the including jspWriter
   } else {
  // Do not flush the buffer even if we're not included 
(i.e.
  // we are the main page. The servlet will flush it and 
 close
  // the stream.
  ((JspWriterImpl)out).flushBuffer();
  }
   } catch (IOException ex) {
   loghelper.log(Internal error flushing the buffer in release());
   }
   servlet  = null;
   config   = null;
   context  = null;
   needsSession = false;
   errorPageURL = null;
   bufferSize   = JspWriter.DEFAULT_BUFFER;
   autoFlush= true;
   request  = null;
   response = null;
  depth = -1;
   baseOut.recycle();
   session  = null;
   attributes.clear();
  }
 
 The tear-down activity session=null is skipped because of the exception,
 which creates a problem since the session so referenced becomes 
 ineligible for garbage
 collection after processing the request.Does anyone know:
 a) is this documented somewhere (I read 102 matches for memory

Re: Illegal IMail List Server Command!

2005-05-17 Thread [EMAIL PROTECTED]

unsubscribe * [EMAIL PROTECTED]

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



Re: No such list! s (AM I THE ONLY ONE GETTING THIS SPAM)?

2005-05-17 Thread [EMAIL PROTECTED]

I have tried to unsubscribe to this list becuase of these emails, but I cannot 
get free  What can be done ???

-- Rhino [EMAIL PROTECTED] wrote:
Nope; I think everyone's getting this spam - again and again and again! I
wonder if this idiot  automated his subscription request; otherwise I'm at a
loss to explain why the same emails come up time and time again.

Rhino

- Original Message - 
From: Guy Katz [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Tuesday, May 17, 2005 1:46 AM
Subject: RE: No such list! s (AM I THE ONLY ONE GETTING THIS SPAM)?


am i the only one getting this annoying spam from the tomcat lisy?

-Original Message-
From: s [mailto:[EMAIL PROTECTED]
Sent: Monday, May 16, 2005 10:32 PM
To: tomcat-user@jakarta.apache.org
Subject: No such list! s


Valid Lists


New Atlanta List Server
---

There is no list by that name on this server. Available lists are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest





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


-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.11 - Release Date: 16/05/2005




-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.11 - Release Date: 16/05/2005


-
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: Illegal IMail List Server Command!

2005-05-16 Thread [EMAIL PROTECTED]

subscribe bluedragon-interest jturbo-interest servletexec-interest Donald R 
Milotte

-- [EMAIL PROTECTED] (List Server) wrote:
New Atlanta List Server General Help File
-

Lists hosted by this server are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce

Use one of these list names where you see list name in the command syntax 
below.

All list server commands must be addressed to:

   [EMAIL PROTECTED]

Commands must be placed on the first line of the message body and may not be 
preceded by blanks, whitespace, or other characters.

Valid Commands are:

   To subscribe to a list:

   subscribe list name your full name

   For example:

   subscribe servletexec-interest John Smith

   If you don't include your name in the subscribe command you'll receive an 
Invalid Syntax error message from the list server.

   To unsubscribe from a list:

   unsubscribe list name

   To receive help send after subscribing to a list:

   help list name

If you have any questions or need additional help, send email to:

   [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: Illegal IMail List Server Command!

2005-05-16 Thread [EMAIL PROTECTED]

unsubscribe bluedragon-customers jturbo-customers servletexec-customers 
bluedragon-announce Donald R Milotte

-- [EMAIL PROTECTED] (List Server) wrote:
New Atlanta List Server General Help File
-

Lists hosted by this server are:

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce

Use one of these list names where you see list name in the command syntax 
below.

All list server commands must be addressed to:

   [EMAIL PROTECTED]

Commands must be placed on the first line of the message body and may not be 
preceded by blanks, whitespace, or other characters.

Valid Commands are:

   To subscribe to a list:

   subscribe list name your full name

   For example:

   subscribe servletexec-interest John Smith

   If you don't include your name in the subscribe command you'll receive an 
Invalid Syntax error message from the list server.

   To unsubscribe from a list:

   unsubscribe list name

   To receive help send after subscribing to a list:

   help list name

If you have any questions or need additional help, send email to:

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



Symbolic links and Webdav

2005-04-13 Thread Patrick [EMAIL PROTECTED] AG
Hi all
I am runnnig Tomcat 5.0.24 standalone. I have setup for Webdav. When I 
connect to the resource I can't see the Symbolic links. In Fact, the 
apear very short after connection and then dissapear again. Any ideas?

Thanks you for any help
Patrick
 

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


Re: Webdav, WEB_INF

2005-04-11 Thread Patrick [EMAIL PROTECTED] AG
Thanks for the Info Tim! This is too bad. That means, i have to install 
Apache abd run tomcat using Apache as Web-Server. It is then possible 
to see the WEB-INF directory!

On 11.04.2005, at 14:28, Tim Funk wrote:
IIRC - you cannot see the WEB-INF directory using the webdav webapp. 
Its a constraint imposed by the servlet spec that any request to 
WEB-INF is not allowed.

-Tim
Patrick Sifneos (Rolotec AG new) wrote:
Hi all
When i connect to a webdav resource, the WEB-INF directory remains 
invisible. I'm running tomcat standalone. What do i have to do to 
make WEB-INF directory visible when mounting WEBDAV resources?
-
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: Webdav, WEB_INF

2005-04-11 Thread Patrick [EMAIL PROTECTED] AG
Yes what? Is it possible with tomcat standalone?
On 11.04.2005, at 15:08, Raghupathy,Gurumoorthy wrote:
Yes .. You can use an Alias
-Original Message-
From: Patrick [EMAIL PROTECTED] AG [mailto:[EMAIL PROTECTED]
Sent: 11 April 2005 13:53
To: Tomcat Users List
Subject: Re: Webdav, WEB_INF
Thanks for the Info Tim! This is too bad. That means, i have to install
Apache abd run tomcat using Apache as Web-Server. It is then possible
to see the WEB-INF directory!
On 11.04.2005, at 14:28, Tim Funk wrote:
IIRC - you cannot see the WEB-INF directory using the webdav webapp.
Its a constraint imposed by the servlet spec that any request to
WEB-INF is not allowed.
-Tim
Patrick Sifneos (Rolotec AG new) wrote:
Hi all
When i connect to a webdav resource, the WEB-INF directory remains
invisible. I'm running tomcat standalone. What do i have to do to
make WEB-INF directory visible when mounting WEBDAV resources?
-
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]


[tomcat-user] Postgres + JDBC

2005-03-18 Thread [EMAIL PROTECTED]
First of all, hello to the groupe.

I'm a newbi as far as tomcat is concerned, so if this is
really stupid, sorry for wasting your time.

I'm trying to get a JDBC Data pool connection up using
Tomcat and postgres SQL.

My JNDI source is configured, and when I :
Context initContext = new InitialContext();
Context envContext  =
(Context)initContext.lookup(java:/comp/env);
DataSource ds = (DataSource)envContext.lookup(jdbc/postgres);

I get a Datasource with all the details I entered.

The problem is that when I try to connect, I get the
following error:

Cannot create JDBC driver of class 'org.postgresql.Driver'
for connect URL 'jdbc:postgres://10.201.1.10/QCM'

postgres-8.0.309.jdbc3.jar is in common/lib, yet removing
it, or movining it to shared/lib or $WEBAPP/WEB-INF/lib
doesn't change the error.

I'm running postgresql 8.0 and tomcat 5.0.28.

TIA for your time, all suggestions greatly appreciated.

David

 ADSL JUSQU'A 8 MEGA + 3 MOIS DE TELEPHONE GRATUIT 

L'ultra haut débit à 15EUR/mois seulement ! Et vous téléphonez gratuitement en 
France vers les postes fixes,
hors numéros spéciaux pendant 3 mois.
Pour profiter de cette offre exceptionnelle, cliquez ici : 
http://register.tiscali.fr/adsl/  (voir conditions sur le site)



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



Split catalina.out to separate stdout and stderr?

2005-02-17 Thread [EMAIL PROTECTED]
Hi,

I'm runnning Tomcat 4.1.30 on Linux/Unix.  I'm trying to get our app's debug 
info from
catalina.out split into 2 separate stderr and stdout files.  I'm able to do 
this in Windows via
the System.out File and System.err File registry parameters, but I can't 
find a way to do this
in Linux/Unix.

I've tried a couple things that haven't worked:

(A) Changing catalina.sh from

 $CATALINA_BASE/logs/catalina.out 21 
 to
2 $CATALINA_BASE/logs/catalina.err 1 $CATALINA_BASE/logs/catalina.out 

(B) JAVA_OPTS and CATALINA_OPTS with -Dstdout= and -Dstderr= params
(C) JAVA_OPTS and CATALINA_OPTS with -outfile= and -errfile= params


Is there any easy way to do this?

Thanks in advance for any assistance.
~RZ




__ 
Do you Yahoo!? 
Take Yahoo! Mail with you! Get it on your mobile phone. 
http://mobile.yahoo.com/maildemo 

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



disabling tomcat cache

2005-02-02 Thread [EMAIL PROTECTED]
Anyone knows how to desable tomcat cache .It' s a serious problem for file 
generated on-fly.
Tomcat does not see an automatically generated file in a normal webapps.
I means sometimes it appears ...sometimes not.
Has to exists something for avoid that
Or not?
Help I'm desperate?!!?
regrards




Navighi a 2 MEGA e i primi 3 mesi sono GRATIS. 
Scegli Libero Adsl Flat senza limiti su http://www.libero.it



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



tomcat caching problem

2005-01-28 Thread [EMAIL PROTECTED]
Hi all
I geerate in a Struts Action servlet a file that I want to open directly in a 
new browser.
I give tomcat the right url and the file is properly generated.
But tomcat does not see it.
after shoutdown and restart Tomcat start to see the file.That's for sure not 
what I want.
Actually I've done this kind of code in my action servlet
response.setContentType(text/richtext);
response.setHeader(Cache-Control,no-cache); //HTTP 1.1
response.setHeader(Pragma,no-cache); //HTTP 1.0
response.setDateHeader (Expires, 0); //prevents caching at 
the proxy server

Nothing change!
Help!




6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero!
Scaricalo su INTERNET GRATIS 6X http://www.libero.it



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



tomcat caching problem

2005-01-28 Thread [EMAIL PROTECTED]
Hi all
I geerate in a Struts Action servlet a file that I want to open directly in a 
new browser.
I give tomcat the right url and the file is properly generated.
But tomcat does not see it.
after shoutdown and restart Tomcat start to see the file.That's for sure not 
what I want.
Actually I've done this kind of code in my action servlet
response.setContentType(text/richtext);
response.setHeader(Cache-Control,no-cache); //HTTP 1.1
response.setHeader(Pragma,no-cache); //HTTP 1.0
response.setDateHeader (Expires, 0); //prevents caching at the proxy server

Nothing change!
Help!





6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero!
Scaricalo su INTERNET GRATIS 6X http://www.libero.it



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



Re: Eclipse Lomboz

2005-01-20 Thread [EMAIL PROTECTED]
Il faut activer le plugin :
- Aide / Mises à jour de logiciels / Gérer la configuration.
- Afficher les plugins désactiver (petit icone avec rond rouge)
- click droit sur la ligne lomboz / Avtiver

VAN DER MARLIERE FREDERIC a écrit :
Hi all,
Having met really toomuch bugs with JBuilder X Enterprise, I decided to work
with Eclipse (3.0.0 on windows XP). I chose Sysdeo Tomcat, XML Buddy and
Lomboz(3.0.1) plug-ins .
Proglem is that I don't see the lomboz plug-in in customize perspective.
Even I install emf-sdo-runtime-2.0.1, even I start eclipse with -clean
option, I don't see lomboz plug-in.
Did someone met the same problem?
Thanks in advance.
Fred.

Ce message et toutes les pieces jointes (ci-apres le message) sont 
confidentiels et etablis a l'intention exclusive de ses destinataires.
Toute utilisation ou diffusion non autorisee est interdite.Tout message 
electronique est susceptible d'alteration.
Le CREDIT DU NORD et ses filiales declinent toute responsabilite au titre de ce 
message s'il a ete altere, deforme ou falsifie.
This message and any attachments ( the message) are confidential and intended 
solely for the addressees.
Any unauthorised use or dissemination is prohibited.E-mails are susceptible to 
alteration.
Neither CREDIT DU NORD nor any of its subsidiaries or affiliates shall be 
liable for the message if altered, changed or falsified.

 


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


Re: Running Tomcat from jsvc

2004-10-27 Thread [EMAIL PROTECTED]
Kevin Offet wrote:
Hi,
to help cut through the apparent confusion, all you need to do is:
1) change ownership (recursively) of your tomcat install dir to ( if 
your user account that will run tomcat is called for example tomrunner 
) tomrunner.tomrunner.

2) change to that user and decompress and build jsvc (in the 
${tomcat.installdir}/bin dir) according to the straightforward 
instructions included.

3) change ownership of the resulting jsvc binary to root.root (root 
initially runs jsvc which then changes the user to your tomrunner)

4) build yourself a decent startup/shutdown script appropriate to your 
distro and your preferences.

Read The Fine Manual at 
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/setup.html

for all that you'll need to know. jsvc -help will also spit out it's 
allowed parameters that you can play with.

5) go have fun building web-apps. ;-)
Kevin
Thanks so much, Kevin for clarification. Before, it had not been evident 
to me that making jsvc required to do it as the user to which jsvc will 
change. Also, I had all files in $CATALINA_HOME owned by root:root.

Now, as I changed $CATALINA_HOME/conf to ownership tomcat:tomcat and 
after making $CATALINA_HOME/work readable/writable by that user, 
everything works fine.

Thanks for your help again
--
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Running Tomcat from jsvc

2004-10-26 Thread [EMAIL PROTECTED]
Hi Folks,
I'm having problems starting Tomcat 5.0.28 using jsvc.
My system is SuSE Linux 9.1 with j2sdk1.4.2_05.
When I start Tomcat using $CATALINA_HOME/bin/startup.sh everything works 
fine. But now I want to run Tomcat as a daemon under a non-root user.

I followed the instructions on[1] for Unix daemon and built jsvc that I 
succeeded to start using the Tomcat5.sh script[2]. But actually, Tomcat 
didn't really start. So I added the options -verbose and -debug to 
the script[2] and saved the catalina.out log[3].

According to the log (line 1367), the daemon startet successfully, but 
when my browsers request http://localhost:8080/ , then there is no 
connection.

The log (line 626)[3] is telling me that server.xml couldn't be 
loaded, but it didn't tell why.

Could please somebody give me a hint what might be wrong and what I have 
to change to get it running?

[1]http://jakarta.apache.org/tomcat/tomcat-5.0-doc/setup.html#Unix%20daemon
[2]http://home.arcor.de/plsdontreply/tomcat/Tomcat5.sh.txt
[3]http://home.arcor.de/plsdontreply/tomcat/catalina.out.txt
--
Thanks in advance
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Running Tomcat from jsvc

2004-10-26 Thread [EMAIL PROTECTED]
Shapira, Yoav wrote:
Hi,
You have to start the jsvc as root, then it changes the effective user
ID to non-root.
Hi,
That's exactly what I did, and according to the log (line 1, line 685), 
the user has been changed. Did I misunderstand something?

Of course, before that, I had tried to start that script as non-root and 
ran into a lot more of errors. But that's a different story.
--
[EMAIL PROTECTED]

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


Re: Running Tomcat from jsvc

2004-10-26 Thread [EMAIL PROTECTED]
Wolfgang Hackl wrote:
Hi Volkmar,
did you check the file system permissions of your $CATALINA_HOME 
directory? As I can see from my installations, server.xml has read and 
write permissions exclusively for its owner. My conclusion is that the 
directory must belong to the user, will run the service (wwwrun says 
your Tomcat5.sh).
Hi Wolfgang,
I got everything in /opt/jakarta-tomcat-5.0.28 owned by root:root.
So you mean, I should change all files in the conf subdirectory to be 
owned by wwwrun? Or is it better/safer to just make those files world 
readable/writeable and leaving them owned by root:root?

When, during installation of Tomcat should I have changed the ownership 
or permissions of which files? I've installed Tomcat using
  cd /opt
  sudo tar xzf /tmp/jakarta-tomcat-5.0.28.tar.gz
so that I got everything owned by root:root.

--
Volkmar W. Pogatzki
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Apache/Tomcat Integration problem (Aprutil lib missing) causing unsatisfied link error

2004-09-16 Thread [EMAIL PROTECTED]
I am following the instructions listed in
http://www.mail-archive.com/[EMAIL PROTECTED]/msg130210.html

Expected Results from ldd

 ldd /usr/local/httpd/modules/jkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1 (0x40046000)
libapr-0.so.0 =
/usr/local/httpd-2.0.49/lib/libapr-0.so.0 (0x40074000)
libaprutil-0.so.0 =
/usr/local/httpd-2.0.49/lib/libaprutil-0.so.0
(0x40097000)
libgdbm.so.2 = /usr/lib/libgdbm.so.2 (0x400ab000)
libdb-4.0.so = /lib/libdb-4.0.so (0x400b2000)
libexpat.so.0 = /usr/lib/libexpat.so.0 (0x4015a000)
libc.so.6 = /lib/i686/libc.so.6 (0x4017a000)
librt.so.1 = /lib/i686/librt.so.1 (0x402b4000)
libm.so.6 = /lib/i686/libm.so.6 (0x402c6000)
libnsl.so.1 = /lib/libnsl.so.1 (0x402e8000)
libpthread.so.0 = /lib/i686/libpthread.so.0
(0x402fd000)
libdl.so.2 = /lib/libdl.so.2 (0x4034d000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000)

Actual Results from my installation..


[EMAIL PROTECTED] apache2]# ldd libjkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1
(0x40032000)
libapr-0.so.0 =
/usr/local/apache2/lib/libapr-0.so.0 (0x4005f000)
libc.so.6 = /lib/tls/libc.so.6 (0x4200)
librt.so.1 = /lib/librt.so.1 (0x4007d000)
libm.so.6 = /lib/tls/libm.so.6 (0x4008f000)
libnsl.so.1 = /lib/libnsl.so.1 (0x400b2000)
libpthread.so.0 = /lib/tls/libpthread.so.0
(0x400c7000)
libdl.so.2 = /lib/libdl.so.2 (0x400d4000)



I am missing apr-uitl etc... So I  am getting
Unsatisfied link Error...Please help...

MakeFile /server/apache2 is listed below..

# Gnu makefile and libtool are required
# use -D options to overrides defaults
CC=gcc
CP=/bin/cp
prefix=/usr/local
exec_prefix=${prefix}
  
  
   
APACHE2_HOME=/usr/local/apache2
OS=linux
JAVA_HOME=/usr/java/jdk1.5.0
APACHE2_INCL=-I/usr/local/apache2/include
APACHE2_LIBEXEC=/usr/local/apache2/modules
APACHE2_LIBDIR=/usr/local/apache2/lib
APR_INCL=
-I/usr/local/httpd-2.0.50/srclib/apr-util/include
-I/usr/local/httpd-2.0.50/srclib/apr/include
#APR_LIBS=-L/usr/local/apache2/lib
APR_LIBS=-L/usr/local/apache2/lib -lapr-0
#APR_LIBS=-L/root/software/httpd-2.0.50/srclib/apr-util/.libs
-laprutil-0
APR_LIBDIR_LA=
EXTRA_CFLAGS= -g -O2 -pthread
EXTRA_CPPFLAGS=-DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE
-D_GNU_SOURCE
ifneq ($(strip $(JAVA_HOME)),)
JAVA_INCL=-I ${JAVA_HOME}/include -I
${JAVA_HOME}/include/${OS}
JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L
${JAVA_HOME}/lib/${ARCH}/native_threads
endif
  
  
   
JK_DIR := ../..
BUILD_DIR = ${JK_DIR}/../build/jk2/apache2
  
  
   
# Extract EXTRA_CFLAGS and EXTRA_CPPFLAGS - same flags
used during apache2
# compilation
#include ${APACHE2_HOME}/build/config_vars.mk
  
  
   
# Yes, we use the same properties file as ant
#include ../../../build.properties


#LIBTOOL=/bin/sh /usr/local/apache2/build/libtool
--silent
LIBTOOL=/usr/bin/libtool
  
  
   
# It doesn't hurt if we include all
INCLUDES= -I${JK_DIR}/include \
  ${APACHE2_INCL} \
  ${APR_INCL} \
  ${JAVA_INCL}
  
  
   
JK_CFLAGS=-DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
-DHAVE_JNI
#ifdef APR_LIBDIR_LA
#JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
#else
#JK_LDFLAGS=-lcrypt ${APR_LIBS}
#endif'
ifdef APR_LIBDIR_LA
JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
else
JK_LDFLAGS=-lcrypt ${APR_LIBS}
-L/usr/local/apache2/lib -laprutil-0 -lgdbm -ldb-4.0
-lexpat
endif
  
  
   
## Based on rules.mk
##

etc


Thanks



__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 

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



Apache/TomCat Integration problem: No ClassDef Found Error

2004-09-16 Thread [EMAIL PROTECTED]

PLEASE HELP

I am following the instructions listed in
http://www.mail-archive.com/[EMAIL PROTECTED]/msg130210.html

Expected Results from ldd

 ldd /usr/local/httpd/modules/jkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1 (0x40046000)
libapr-0.so.0 =
/usr/local/httpd-2.0.49/lib/libapr-0.so.0 (0x40074000)
libaprutil-0.so.0 =
/usr/local/httpd-2.0.49/lib/libaprutil-0.so.0
(0x40097000)
libgdbm.so.2 = /usr/lib/libgdbm.so.2 (0x400ab000)
libdb-4.0.so = /lib/libdb-4.0.so (0x400b2000)
libexpat.so.0 = /usr/lib/libexpat.so.0 (0x4015a000)
libc.so.6 = /lib/i686/libc.so.6 (0x4017a000)
librt.so.1 = /lib/i686/librt.so.1 (0x402b4000)
libm.so.6 = /lib/i686/libm.so.6 (0x402c6000)
libnsl.so.1 = /lib/libnsl.so.1 (0x402e8000)
libpthread.so.0 = /lib/i686/libpthread.so.0
(0x402fd000)
libdl.so.2 = /lib/libdl.so.2 (0x4034d000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000)

Actual Results from my installation..


[EMAIL PROTECTED] apache2]# ldd libjkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1
(0x40032000)
libapr-0.so.0 =
/usr/local/apache2/lib/libapr-0.so.0 (0x4005f000)
libc.so.6 = /lib/tls/libc.so.6 (0x4200)
librt.so.1 = /lib/librt.so.1 (0x4007d000)
libm.so.6 = /lib/tls/libm.so.6 (0x4008f000)
libnsl.so.1 = /lib/libnsl.so.1 (0x400b2000)
libpthread.so.0 = /lib/tls/libpthread.so.0
(0x400c7000)
libdl.so.2 = /lib/libdl.so.2 (0x400d4000)



I am missing apr-uitl etc... So I  am getting
Unsatisfied link Error...Please help...

MakeFile /server/apache2 is listed below..

# Gnu makefile and libtool are required
# use -D options to overrides defaults
CC=gcc
CP=/bin/cp
prefix=/usr/local
exec_prefix=${prefix}
  
  
   
APACHE2_HOME=/usr/local/apache2
OS=linux
JAVA_HOME=/usr/java/jdk1.5.0
APACHE2_INCL=-I/usr/local/apache2/include
APACHE2_LIBEXEC=/usr/local/apache2/modules
APACHE2_LIBDIR=/usr/local/apache2/lib
APR_INCL=
-I/usr/local/httpd-2.0.50/srclib/apr-util/include
-I/usr/local/httpd-2.0.50/srclib/apr/include
#APR_LIBS=-L/usr/local/apache2/lib
APR_LIBS=-L/usr/local/apache2/lib -lapr-0
#APR_LIBS=-L/root/software/httpd-2.0.50/srclib/apr-util/.libs
-laprutil-0
APR_LIBDIR_LA=
EXTRA_CFLAGS= -g -O2 -pthread
EXTRA_CPPFLAGS=-DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE
-D_GNU_SOURCE
ifneq ($(strip $(JAVA_HOME)),)
JAVA_INCL=-I ${JAVA_HOME}/include -I
${JAVA_HOME}/include/${OS}
JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L
${JAVA_HOME}/lib/${ARCH}/native_threads
endif
  
  
   
JK_DIR := ../..
BUILD_DIR = ${JK_DIR}/../build/jk2/apache2
  
  
   
# Extract EXTRA_CFLAGS and EXTRA_CPPFLAGS - same flags
used during apache2
# compilation
#include ${APACHE2_HOME}/build/config_vars.mk
  
  
   
# Yes, we use the same properties file as ant
#include ../../../build.properties


#LIBTOOL=/bin/sh /usr/local/apache2/build/libtool
--silent
LIBTOOL=/usr/bin/libtool
  
  
   
# It doesn't hurt if we include all
INCLUDES= -I${JK_DIR}/include \
  ${APACHE2_INCL} \
  ${APR_INCL} \
  ${JAVA_INCL}
  
  
   
JK_CFLAGS=-DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
-DHAVE_JNI
#ifdef APR_LIBDIR_LA
#JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
#else
#JK_LDFLAGS=-lcrypt ${APR_LIBS}
#endif'
ifdef APR_LIBDIR_LA
JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
else
JK_LDFLAGS=-lcrypt ${APR_LIBS}
-L/usr/local/apache2/lib -laprutil-0 -lgdbm -ldb-4.0
-lexpat
endif
  
  
   
## Based on rules.mk
##

etc


Thanks







__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 

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



Apache/Tomcat Intergration problem on RedHat Linux 9.0

2004-09-15 Thread [EMAIL PROTECTED]

I am following the instructions listed in
http://www.mail-archive.com/[EMAIL PROTECTED]/msg130210.html

Expected Results from ldd

 ldd /usr/local/httpd/modules/jkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1 (0x40046000)
libapr-0.so.0 =
/usr/local/httpd-2.0.49/lib/libapr-0.so.0 (0x40074000)
libaprutil-0.so.0 =
/usr/local/httpd-2.0.49/lib/libaprutil-0.so.0
(0x40097000)
libgdbm.so.2 = /usr/lib/libgdbm.so.2 (0x400ab000)
libdb-4.0.so = /lib/libdb-4.0.so (0x400b2000)
libexpat.so.0 = /usr/lib/libexpat.so.0 (0x4015a000)
libc.so.6 = /lib/i686/libc.so.6 (0x4017a000)
librt.so.1 = /lib/i686/librt.so.1 (0x402b4000)
libm.so.6 = /lib/i686/libm.so.6 (0x402c6000)
libnsl.so.1 = /lib/libnsl.so.1 (0x402e8000)
libpthread.so.0 = /lib/i686/libpthread.so.0
(0x402fd000)
libdl.so.2 = /lib/libdl.so.2 (0x4034d000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000)

Actual Results from my installation..


[EMAIL PROTECTED] apache2]# ldd libjkjni.so
libcrypt.so.1 = /lib/libcrypt.so.1
(0x40032000)
libapr-0.so.0 =
/usr/local/apache2/lib/libapr-0.so.0 (0x4005f000)
libc.so.6 = /lib/tls/libc.so.6 (0x4200)
librt.so.1 = /lib/librt.so.1 (0x4007d000)
libm.so.6 = /lib/tls/libm.so.6 (0x4008f000)
libnsl.so.1 = /lib/libnsl.so.1 (0x400b2000)
libpthread.so.0 = /lib/tls/libpthread.so.0
(0x400c7000)
libdl.so.2 = /lib/libdl.so.2 (0x400d4000)



I am missing apr-uitl etc... So I  am getting
Unsatisfied link Error...Please help...

MakeFile /server/apache2 is listed below..

# Gnu makefile and libtool are required
# use -D options to overrides defaults
CC=gcc
CP=/bin/cp
prefix=/usr/local
exec_prefix=${prefix}
  
  
   
APACHE2_HOME=/usr/local/apache2
OS=linux
JAVA_HOME=/usr/java/jdk1.5.0
APACHE2_INCL=-I/usr/local/apache2/include
APACHE2_LIBEXEC=/usr/local/apache2/modules
APACHE2_LIBDIR=/usr/local/apache2/lib
APR_INCL=
-I/usr/local/httpd-2.0.50/srclib/apr-util/include
-I/usr/local/httpd-2.0.50/srclib/apr/include
#APR_LIBS=-L/usr/local/apache2/lib
APR_LIBS=-L/usr/local/apache2/lib -lapr-0
#APR_LIBS=-L/root/software/httpd-2.0.50/srclib/apr-util/.libs
-laprutil-0
APR_LIBDIR_LA=
EXTRA_CFLAGS= -g -O2 -pthread
EXTRA_CPPFLAGS=-DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE
-D_GNU_SOURCE
ifneq ($(strip $(JAVA_HOME)),)
JAVA_INCL=-I ${JAVA_HOME}/include -I
${JAVA_HOME}/include/${OS}
JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L
${JAVA_HOME}/lib/${ARCH}/native_threads
endif
  
  
   
JK_DIR := ../..
BUILD_DIR = ${JK_DIR}/../build/jk2/apache2
  
  
   
# Extract EXTRA_CFLAGS and EXTRA_CPPFLAGS - same flags
used during apache2
# compilation
#include ${APACHE2_HOME}/build/config_vars.mk
  
  
   
# Yes, we use the same properties file as ant
#include ../../../build.properties


#LIBTOOL=/bin/sh /usr/local/apache2/build/libtool
--silent
LIBTOOL=/usr/bin/libtool
  
  
   
# It doesn't hurt if we include all
INCLUDES= -I${JK_DIR}/include \
  ${APACHE2_INCL} \
  ${APR_INCL} \
  ${JAVA_INCL}
  
  
   
JK_CFLAGS=-DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
-DHAVE_JNI
#ifdef APR_LIBDIR_LA
#JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
#else
#JK_LDFLAGS=-lcrypt ${APR_LIBS}
#endif'
ifdef APR_LIBDIR_LA
JK_LDFLAGS=-L${APACHE2_LIBDIR} -lcrypt
else
JK_LDFLAGS=-lcrypt ${APR_LIBS}
-L/usr/local/apache2/lib -laprutil-0 -lgdbm -ldb-4.0
-lexpat
endif
  
  
   
## Based on rules.mk
##

etc


Thanks





___
Do you Yahoo!?
Express yourself with Y! Messenger! Free. Download now. 
http://messenger.yahoo.com

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



Re: Re: BASIC authentication not working, PLEASE HELP !

2004-07-26 Thread \ [EMAIL PROTECTED]
Salut  Michele,

Thanks for the tip. I didn't know about this option.
However, I found what the problem was.  If you look at my web.xml file, you'll see I 
fogot the 's'  in security-conStraint.
The most  incredible thing is that  Tomcat 5 didn't complain at all !!!
And guess how I figured out  ? I though there was a bug in the container so I 
downloaded Tomcat 4.
And immediately this version complained about  the mispelling...
I'm quite surprised (and disappointed) because I did change the level of traces in the 
server.xml and no valuable information came out :-(.
I hope this post will avoid other newbies to be stuck like I was.

Merci,

Laurent

 Message du 23/07/04 à 21h36
 De : Michele Ouellet [EMAIL PROTECTED]
 A : Laurent Le Moux [EMAIL PROTECTED]
 Copie à : 
 Objet : Re: BASIC authentication not working, PLEASE HELP !
 
 Salut Laurent,
 
 Did you start tomcat with the -security flag on the command line?
 
 Michele Ouellet
 Stelvio Inc.
 
 - Original Message -
 From: Laurent Le Moux [EMAIL PROTECTED]
 Newsgroups: comp.lang.java.security
 Sent: Thursday, July 22, 2004 10:27 AM
 Subject: BASIC authentication not working, PLEASE HELP !
 
 
  Hye !
 
  I struggle for two days now with Tomcat 5 BASIC authentication.
 
  I read many posts about the problem but most of the people seem to
  have a login window appearing. I don't :-(
 
  jsp security examples, manager and admin work fine but my application
  just acts as if no authentication was required...
 
  I really don't see what's wrong with my config files.
 
  Can anybody help me, please ?!!
 
  Hereafter are the xml files :
 
  --
 
  tomcat-users.xml :
 
  ?xml version='1.0' encoding='utf-8'?
  tomcat-users
role rolename=tomcat/
role rolename=role1/
role rolename=standard/
role rolename=manager/
user username=llemoux password=llemoux
  roles=standard,manager/
user username=tomcat password=tomcat roles=tomcat/
user username=both password=tomcat roles=tomcat,role1/
user username=role1 password=tomcat roles=role1/
  /tomcat-users
 
  --
 
  web.xml :
 
  ?xml version=1.0 encoding=ISO-8859-1?
 
  web-app version=2.4
 
security-contraint
  web-resource-collection
url-pattern/*/url-pattern
  /web-resource-collection
  auth-constraint
role-namestandard/role-name
  /auth-constraint
/security-contraint
 
login-config
  auth-methodBASIC/auth-method
/login-config
 
security-role
  role-namestandard/role-name
/security-role
 
  /web-app
 
  --
 
  server.xml :
 
  Server port=8005 shutdown=SHUTDOWN
GlobalNamingResources
  !-- Used by Manager webapp --
  Resource name=UserDatabase auth=Container
type=org.apache.catalina.UserDatabase
description=User database that can be updated and saved
  /Resource
  ResourceParams name=UserDatabase
parameter
  namefactory/name
  valueorg.apache.catalina.users.MemoryUserDatabaseFactory/value
/parameter
parameter
  namepathname/name
  valueconf/tomcat-users.xml/value
/parameter
  /ResourceParams
/GlobalNamingResources
 
Service name=Catalina
  Connector port=8080 /
 
  !-- This is here for compatibility only, not required --
  Connector port=8009 protocol=AJP/1.3 /
 
  Engine name=Catalina defaultHost=localhost
Logger className=org.apache.catalina.logger.FileLogger/
 
Realm className=org.apache.catalina.realm.UserDatabaseRealm
   resourceName=UserDatabase /
 
Host name=localhost appBase=webapps/
 
DefaultContext
 
  Resource name=jdbc/JSDB auth=Container
type=javax.sql.DataSource/
  ResourceParams name=jdbc/JSDB
parameter
  namefactory/name
  valueorg.apache.commons.dbcp.BasicDataSourceFactory/value
/parameter
 
parameter
  namemaxActive/name
  value3/value
/parameter
 
parameter
  namemaxIdle/name
  value1/value
/parameter
 
parameter
  nameusername/name
  valuejSDB/value
/parameter
 
parameter
  namepassword/name
  valuejSDB/value
/parameter
 
parameter
  namedriverClassName/name
  valueorg.hsqldb.jdbcDriver/value
/parameter
 
parameter
  nameurl/name
  valuejdbc:hsqldb:hsql://localhost/value
/parameter
  /ResourceParams
 
/DefaultContext
  /Engine
/Service
  /Server
 
 
--

Faites un voeu et puis Voila ! www.voila.fr 



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



BASIC authentication not working, PLEASE HELP !

2004-07-22 Thread \ [EMAIL PROTECTED]
Hello,

I found the following interesting answer from Craig R. McClanahan to Sim IJskes 
concerning the use of  BASIC authentication :

 I was able to get basic authentication working by editing the file
 $TOMCAT_HOME/webapps/examples/WEB-INF/web.xml and changing the auth-method 
 element from FORM
 to BASIC.  Then, accessing the following URL:
 
 http://localhost:8080/examples/jsp/security/protected
 
 correctly caused the basic authentication dialog to come up, and it correctly 
 rejected all
 username/password combinations other than the one defined in the 
 conf/tomcat-users.xml file
 (tomcat/tomcat).  If you can find a scenario like this that doesn't work correctly, 
 could you
 please report it?

I did exactly  the same test but I have a scenario like this that doesn't work 
correctly ;-) !

I struggle for two days now with Tomcat 5 BASIC authentication.

I read many posts about the problem but most of the people seem to
have a login window appearing. I don't :-(

jsp security examples (quoted above), manager and admin authentication work fine but 
my application
just acts as if no authentication was required...

I really don't see what's wrong with my config files. The server.xml is a copy of the 
server-minimal.xml one where I added a database ressource.  The web.xml is based on 
$TOMCAT_HOME/server/webapps/manager/WEB-INF/web.xml (i.e. a working example).

Can anybody help me, please ?!!

Hereafter are the xml files :

--

tomcat-users.xml :

?xml version='1.0' encoding='utf-8'?
tomcat-users
  role rolename=tomcat/
  role rolename=role1/
  role rolename=standard/
  role rolename=manager/
  user username=llemoux password=llemoux roles=standard,manager/
  user username=tomcat password=tomcat roles=tomcat/
  user username=both password=tomcat roles=tomcat,role1/
  user username=role1 password=tomcat roles=role1/
/tomcat-users

--

web.xml : 

?xml version=1.0 encoding=ISO-8859-1?

web-app version=2.4

  security-contraint
web-resource-collection
  url-pattern/*/url-pattern
/web-resource-collection
auth-constraint
  role-namestandard/role-name
/auth-constraint
  /security-contraint

  login-config
auth-methodBASIC/auth-method
  /login-config

  security-role
role-namestandard/role-name
  /security-role

/web-app

--

server.xml :

Server port=8005 shutdown=SHUTDOWN
  GlobalNamingResources
!-- Used by Manager webapp --
Resource name=UserDatabase auth=Container
  type=org.apache.catalina.UserDatabase
  description=User database that can be updated and saved
/Resource
ResourceParams name=UserDatabase
  parameter 
namefactory/name
valueorg.apache.catalina.users.MemoryUserDatabaseFactory/value
  /parameter
  parameter
namepathname/name
valueconf/tomcat-users.xml/value
  /parameter
/ResourceParams
  /GlobalNamingResources

  Service name=Catalina
Connector port=8080 /

!-- This is here for compatibility only, not required --
Connector port=8009 protocol=AJP/1.3 /

Engine name=Catalina defaultHost=localhost
  Logger className=org.apache.catalina.logger.FileLogger/

  Realm className=org.apache.catalina.realm.UserDatabaseRealm
 resourceName=UserDatabase /

  Host name=localhost appBase=webapps/

  DefaultContext

Resource name=jdbc/JSDB auth=Container
  type=javax.sql.DataSource/
ResourceParams name=jdbc/JSDB
  parameter
namefactory/name
valueorg.apache.commons.dbcp.BasicDataSourceFactory/value
  /parameter

  parameter
namemaxActive/name
value3/value
  /parameter

  parameter
namemaxIdle/name
value1/value
  /parameter

  parameter
nameusername/name
valuejSDB/value
  /parameter

  parameter
namepassword/name
valuejSDB/value
  /parameter

  parameter
namedriverClassName/name
valueorg.hsqldb.jdbcDriver/value
  /parameter

  parameter
nameurl/name
valuejdbc:hsqldb:hsql://localhost/value
  /parameter
/ResourceParams

  /DefaultContext
/Engine
  /Service
/Server
--

Faites un voeu et puis Voila ! www.voila.fr 



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



Reading the servlet input stream twice

2004-06-18 Thread [EMAIL PROTECTED]
Dear All,

I use Tomcat 4.1.xx
I am implementing page tracking on a project.
I am coming across a problem, when I want to write a copy of the parameters
or contents of a POST request to the database.
I have tried using HttpServletRequest.getInputStream () but this cleans out
the input stream and means that no parameters
or content is available to be passed on to the logic that processes the
parameters or post content.

Is there anyway of getting a copy of a POST request content without
cleaning out the input stream and stuffing up the suceeding logic?

Regards,

Phil Hewitt


mail2web - Check your email from the web at
http://mail2web.com/ .



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



RE: question

2004-06-17 Thread [EMAIL PROTECTED]
I put my web application under webapps...
(moved the entire subtree of my application)
now what do i do to have it running?

How do i connect to it?

Angelo




 Hi,
 Didn't we discuss this last week? ;)  Anyways, don't put your webapp
 under webapps/ROOT: put it under the webapps folder itself.

 Put all your classes in packages to establish a good habit.

 Use explicit imports for your classes unless they're in the same package
 as the class using the imports.


 Yoav Shapira
 Millennium Research Informatics


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 16, 2004 10:39 AM
 To: tomcat-user
 Subject: question
 
 Question, please.
 
 I have a web application... named matrici/web
 
 
 so i have a tree like this
 
 matrici/web/
 -many jsp files
 -WEB-INF/
 --web.xml
 --classes/
 --lib/
 
 my application is under $CATALINA_HOME/webapps/ROOT
 
 I put my extern class, CreaServizio.class in WEB-INF/classes/ is it
 right?
 do i have to create a package for that class?
 or do i have to use an explicit import instruction?
 
 It returns me an error
  cannot resolve symbol symbol  : variable CreaServizio
 
 CreaServizio is a class
 
 Angelo
 
 
 
 -
 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]




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



Re: question

2004-06-17 Thread [EMAIL PROTECTED]
Hi

I'm sorry but i don't understand.

may someone explain it?
I want to know the procedure of making an application running, please

Angelo



 Hi Angelo,

 Please read my write-up on Tomcat 5 here :
 http://cymulacrum.net/writings/tomcat5/book1.html

 I am currently updating the document, but what you need now is right there.
 
 Regards,
 pascal chong



 [EMAIL PROTECTED] wrote:
 
 I put my web application under webapps...
 (moved the entire subtree of my application)
 now what do i do to have it running?
 
 How do i connect to it?
 
 Angelo
 
 
 
 
 
 Hi,
 Didn't we discuss this last week? ;)  Anyways, don't put your webapp
 under webapps/ROOT: put it under the webapps folder itself.
 
 Put all your classes in packages to establish a good habit.
 
 Use explicit imports for your classes unless they're in the same package
 as the class using the imports.
 
 
 Yoav Shapira
 Millennium Research Informatics
 
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 16, 2004 10:39 AM
 To: tomcat-user
 Subject: question
 
 Question, please.
 
 I have a web application... named matrici/web
 
 
 so i have a tree like this
 
 matrici/web/
 -many jsp files
 -WEB-INF/
 --web.xml
 --classes/
 --lib/
 
 my application is under $CATALINA_HOME/webapps/ROOT
 
 I put my extern class, CreaServizio.class in WEB-INF/classes/ is it
 
 
 right?
 
 
 do i have to create a package for that class?
 or do i have to use an explicit import instruction?
 
 It returns me an error
 cannot resolve symbol symbol  : variable CreaServizio
 
 CreaServizio is a class
 
 Angelo
 
 
 
 -
 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]
 
 
 
 
 
 
 -
 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]



question

2004-06-16 Thread [EMAIL PROTECTED]
Question, please.

I have a web application... named matrici/web

so i have a tree like this

matrici/web/
-many jsp files
-WEB-INF/
--web.xml
--classes/
--lib/

my application is under $CATALINA_HOME/webapps/ROOT

I put my extern class, CreaServizio.class in WEB-INF/classes/ is it right?
do i have to create a package for that class?

It returns me an error
 cannot resolve symbol symbol  : variable CreaServizio

CreaServizio is a class

Angelo



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



question

2004-06-16 Thread [EMAIL PROTECTED]
Question, please.

I have a web application... named matrici/web

so i have a tree like this

matrici/web/
-many jsp files
-WEB-INF/
--web.xml
--classes/
--lib/

my application is under $CATALINA_HOME/webapps/ROOT

I put my extern class, CreaServizio.class in WEB-INF/classes/ is it right?
do i have to create a package for that class?
or do i have to use an explicit import instruction?

It returns me an error
 cannot resolve symbol symbol  : variable CreaServizio

CreaServizio is a class

Angelo



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



problem

2004-06-14 Thread [EMAIL PROTECTED]
Hi all!

I have tomcat and Globus Toolkit 3.0.2 separatelly started!
One on the 8090 (tomcat) and the other on the 8080 (globus)
From a jsp i want to create a service instance but i receive an error at the
first line
OGSIServiceGridLocator gLoc = new OGSIServiceGridLocator();

the error is:

2004-06-14 12:34:39 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp
threw exception
java.lang.NullPointerException
at org.apache.axis.client.Service.getEngineConfiguration(Service.java:801)
at org.apache.axis.client.Service.getAxisClient(Service.java:143)
at org.apache.axis.client.Service.init(Service.java:152)
at
org.globus.ogsa.impl.core.service.ServiceLocator.init(ServiceLocator.java:52)
at
org.gridforum.ogsi.OGSIServiceGridLocator.init(OGSIServiceGridLocator.java:10)
at org.apache.jsp.matrici.web.elab_jsp._jspService(elab_jsp.java:98)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:284)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:204)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:257)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:245)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:199)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:184)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:164)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:149)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:156)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:206)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:732)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:619)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:688)
at java.lang.Thread.run(Thread.java:534)

but in a client java the same instruction runs...
then what could be the problem with tomcat?

could someone help me, please???
here i need help!!
Angelo



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



Re: NoClassDefFoundError

2004-06-10 Thread [EMAIL PROTECTED]
 Is your webapp in ROOT?  That's usually the default application for Tomcat and
 your own app would be in a named context.  Assuming you are doing the latter,
 and your named context is mycontext, you'd put it in:

 $CATALINA_HOME/webapps/mycontext/WEB-INF/lib

 Jake

My application is in $CATALINA_HOME/webapps/ROOT/matrici

I have tried to put the jar file in
$CATALINA_HOME/webapps/ROOT/matrici/web/WEB-INF/lib and it fails

Assuming that my application is matrici

Do i have to put the jar file in $CATALINA_HOME/webapps/matrici/WEB-INF/lib?

I have a doubt... there are other jar files containing other inportant class and
this class is found correctly.
Why?

Angelo





 Quoting [EMAIL PROTECTED] [EMAIL PROTECTED]:

  Hi all!
 
  I'm new to Tomcat.
 
  I have a problem testing my web application (jsp pages)
 
  A page of this application fails with this exception:
  javax.servlet.ServletException: org/apache/axis/client/Service
  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)
  javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
  
  root cause
 
  java.lang.NoClassDefFoundError: org/apache/axis/client/Service
  java.lang.ClassLoader.defineClass0(Native Method)
  java.lang.ClassLoader.defineClass(ClassLoader.java:537)
  java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
  java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
  java.net.URLClassLoader.access$100(URLClassLoader.java:55)
  java.net.URLClassLoader$1.run(URLClassLoader.java:194)
  java.security.AccessController.doPrivileged(Native Method)
  java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
  java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
  java.lang.ClassLoader.defineClass0(Native Method)
  java.lang.ClassLoader.defineClass(ClassLoader.java:537)
  java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
  java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
  java.net.URLClassLoader.access$100(URLClassLoader.java:55)
  java.net.URLClassLoader$1.run(URLClassLoader.java:194)
  java.security.AccessController.doPrivileged(Native Method)
  java.net.URLClassLoader.findClass(URLClassLoader.java:187)
 

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:840)
 

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
 

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1370)
 

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
  org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:184)
  org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:110)
  java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
  java.lang.Class.getDeclaredConstructors0(Native Method)
  java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
  java.lang.Class.getConstructor0(Class.java:1922)
  java.lang.Class.newInstance0(Class.java:278)
  java.lang.Class.newInstance(Class.java:261)
  ..etc etc.
 
  i have seen in the archive a similar problem posted by Tejo Vamsi Prayaga,
  but
  no solution
 
  At the end that class is in axis.jar, file located in
  $CATALINA_HOME/webapps/ROOT/WEB-INF/lib
  Is this the right location for my jar files?
 
  Thanx
  Angelo
 
 
  -
  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]



NoClassDefFoundError

2004-06-09 Thread [EMAIL PROTECTED]
Hi all!

I'm new to Tomcat.

I have a problem testing my web application (jsp pages)

A page of this application fails with this exception:
javax.servlet.ServletException: org/apache/axis/client/Service
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)

root cause

java.lang.NoClassDefFoundError: org/apache/axis/client/Service
java.lang.ClassLoader.defineClass0(Native Method)
java.lang.ClassLoader.defineClass(ClassLoader.java:537)
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
java.net.URLClassLoader.access$100(URLClassLoader.java:55)
java.net.URLClassLoader$1.run(URLClassLoader.java:194)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:187)

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
java.lang.ClassLoader.defineClass0(Native Method)
java.lang.ClassLoader.defineClass(ClassLoader.java:537)
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
java.net.URLClassLoader.access$100(URLClassLoader.java:55)
java.net.URLClassLoader$1.run(URLClassLoader.java:194)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:187)

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:840)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1370)

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:184)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:110)
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
java.lang.Class.getDeclaredConstructors0(Native Method)
java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
java.lang.Class.getConstructor0(Class.java:1922)
java.lang.Class.newInstance0(Class.java:278)
java.lang.Class.newInstance(Class.java:261)
..etc etc.

i have seen in the archive a similar problem posted by Tejo Vamsi Prayaga, but
no solution

At the end that class is in axis.jar, file located in
$CATALINA_HOME/webapps/ROOT/WEB-INF/lib
Is this the right location for my jar files?

Thanx
Angelo


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



Authentication in tomcat

2004-04-12 Thread [EMAIL PROTECTED]
Hello. I'm a bit confused. I'm trying tomcat's authentication with bad 
or no results. The documentation is very simple and I don't understand 
so well. I've a web application and I want to make authentication with 
a user role and a admin role. The admin can administrate permissions 
and roles. I want to use form authentication. Each role can access a 
part of the application web. I must check if the user has a session and 
has permission for the accessing. 

I've got a connection pool with JNDI in mysql. Has anybody a full 
example? 

Thanks in advance


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



Primo Censimento della Musica Italiana

2004-03-23 Thread [EMAIL PROTECTED]
 Grazie per aver scritto a  [EMAIL PROTECTED], il tuo messaggio è giunto a 
destinazione!

Approfittiamo per informarti che è nato all'indirizzo www.censimentomusica.it un nuovo 
progetto a carattere nazionale: Il I° Censimento Italiano della Musica .

Se non l'hai già fatto ti preghiamo di iscriverti!

Grazie

Lo Staff di
AttikMusic.com


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



Wrong Address

2004-02-01 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-02-01 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-01-31 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-01-31 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:53:04 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am62z-0004HV-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:05 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am62x-0006NV-EG
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:03 +0100
Received: (qmail 87269 invoked by uid 500); 29 Jan 2004 06:51:15 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 87169 invoked from network); 29 Jan 2004 06:51:14 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:14 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016p-7r
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:15 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290751110035
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-meer-Metrics: basil 1086; Body=1 Fuz1=1 Fuz2=44
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:52:26 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am62M-00046v-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:52:26 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am62I-0004H7-E0
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:52:22 +0100
Received: (qmail 86312 invoked by uid 500); 29 Jan 2004 06:51:06 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 86236 invoked from network); 29 Jan 2004 06:51:06 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:06 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016p-Tj
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:16 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129075111003A
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=3 Fuz2=49
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear  ([EMAIL PROTECTED]),

Your message
Re: How do I build mod_jk.so, sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:53:47 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am63g-0004QQ-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:48 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am63e-0004KB-Nl
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:46 +0100
Received: (qmail 95361 invoked by uid 500); 29 Jan 2004 06:52:34 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 95114 invoked from network); 29 Jan 2004 06:52:32 -
Received: from unknown (HELO InKolG01.tcs.com) (203.197.96.54)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:52:32 -
Received: from INKOLG01.tcs.com ([172.18.18.107])
  by InKolG01.tcs.com (Lotus Domino Release 6.0.3)
  with SMTP id 200401291807-11366 ;
  Thu, 29 Jan 2004 12:22:28 +0530
In-Reply-To: [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: How do I build mod_jk.so
MIME-Version: 1.0
X-Mailer: Lotus Notes Release 6.5 September 26, 2003
From: [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Date: Thu, 29 Jan 2004 01:52:25 -0500
X-MIMETrack: Serialize by Router on InKolM02/TCS(Release 6.0.3|September 18, 2003) at 
01/29/2004
 12:22:27,
Serialize complete at 01/29/2004 12:22:27,
Itemize by SMTP Server on InKolG01/TCS(Release 6.0.3|September 26, 2003) at
 01/29/2004 12:22:28 PM,
Serialize by Router on InKolG01/TCS(Release 6.0.3|September 26, 2003) at 
01/29/2004
 12:22:32 PM,
Serialize complete at 01/29/2004 12:22:32 PM
Content-Type: multipart/mixed;
boundary==_NextPartTM-000-93f85198-3869-4e58-b720-2183b0d14765
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=4
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:51:45 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am61h-0003zM-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:45 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am61g-0004G0-4l
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:44 +0100
Received: (qmail 86254 invoked by uid 500); 29 Jan 2004 06:51:06 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 86226 invoked from network); 29 Jan 2004 06:51:05 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:05 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016m-KB
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:15 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290751110037
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=3 Fuz2=45
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:01:53 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6BV-0006Eo-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:53 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6BT-0006ki-Ka
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:51 +0100
Received: (qmail 23287 invoked by uid 500); 29 Jan 2004 07:01:08 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23189 invoked from network); 29 Jan 2004 07:01:07 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:07 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Av-0001PJ-Ds
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:17 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129080114004B
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=1 Fuz1=1 Fuz2=73
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:04:03 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Da-0006k9-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:04:02 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Da-0004gk-0V
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:04:02 +0100
Received: (qmail 25571 invoked by uid 500); 29 Jan 2004 07:01:30 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25475 invoked from network); 29 Jan 2004 07:01:29 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:29 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Av-0001PK-Pq
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:17 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290801140050
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=97
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:02:42 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6CF-0006Pu-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:02:39 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6CF-0006n9-Es
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:02:39 +0100
Received: (qmail 23398 invoked by uid 500); 29 Jan 2004 07:01:09 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23249 invoked from network); 29 Jan 2004 07:01:08 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:08 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Aw-0001PJ-4y
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:18 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290801140053
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-Misty-Metrics: basil 1170; Body=1 Fuz1=1 Fuz2=75
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:03:26 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Cy-0006ab-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:03:24 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Cy-0006pN-Br
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:03:24 +0100
Received: (qmail 23739 invoked by uid 500); 29 Jan 2004 07:01:12 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23652 invoked from network); 29 Jan 2004 07:01:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Aw-0001PK-FN
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:18 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290801140056
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-Misty-Metrics: basil 1170; Body=2 Fuz1=3 Fuz2=3
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:13:28 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Mi-TL-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:13:28 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Mf-0007Ed-8f
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:13:25 +0100
Received: (qmail 62098 invoked by uid 500); 29 Jan 2004 07:11:18 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 62029 invoked from network); 29 Jan 2004 07:11:18 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:18 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kc-0001kt-Vb
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129081115007A
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1117; Body=1 Fuz1=1 Fuz2=71
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:11:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6LH-7x-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:59 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6LE-0007An-8U
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:56 +0100
Received: (qmail 61138 invoked by uid 500); 29 Jan 2004 07:11:09 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 61084 invoked from network); 29 Jan 2004 07:11:08 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:08 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kc-0001ku-Kq
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:18 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290811150077
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=9
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:14:06 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6NK-dZ-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:14:06 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6NI-000532-VP
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:14:05 +0100
Received: (qmail 62201 invoked by uid 500); 29 Jan 2004 07:11:19 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 62086 invoked from network); 29 Jan 2004 07:11:18 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:18 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kd-0001kt-ND
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:16 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290811160080
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=130
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:12:41 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Lx-Ij-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:12:41 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Lw-0004zw-0R
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:12:40 +0100
Received: (qmail 61223 invoked by uid 500); 29 Jan 2004 07:11:10 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 61127 invoked from network); 29 Jan 2004 07:11:09 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:09 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kd-0001ku-AW
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129081115007E
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=6 Fuz2=115
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Giuliano Gavazzi ([EMAIL PROTECTED]),

Your message
Re: !!! Virus alerT !!!, sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:27:06 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Zu-0004I5-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:27:06 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Zt-0005YF-Mw
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:27:05 +0100
Received: (qmail 35031 invoked by uid 500); 29 Jan 2004 07:26:27 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 35007 invoked from network); 29 Jan 2004 07:26:26 -
Received: from unknown (HELO mailhost.humph.com) (217.155.139.146)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:26:26 -
Received: from 213-92-104-121.f5.ngi.it ([213.92.104.121] helo=it.humph.com)
by mailhost.humph.com with asmtp (TLSv1:RC4-SHA:128)
(Exim 4.30)
id HS8Q0A-0002KG-N6
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:26:34 +
Mime-Version: 1.0
Message-Id: [EMAIL PROTECTED]
In-Reply-To: [EMAIL PROTECTED]
References: [EMAIL PROTECTED]
Date: Thu, 29 Jan 2004 08:26:16 +0100
To: Tomcat Users List [EMAIL PROTECTED]
From: Giuliano Gavazzi [EMAIL PROTECTED]
Subject: Re: !!! Virus alerT !!!
Content-Type: text/plain; charset=us-ascii ; format=flowed
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=2 Fuz2=2
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:21:52 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Uq-0002tX-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:52 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Uo-0007bj-Cm
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:50 +0100
Received: (qmail 7057 invoked by uid 500); 29 Jan 2004 07:21:12 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7025 invoked from network); 29 Jan 2004 07:21:11 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:11 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UL-00025g-Oc
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:21 +0100
Date: Thu, 29 Jan 2004 08:21:17 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908211700B3
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=2 Fuz1=3 Fuz2=13
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:22:37 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6VW-00035v-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:22:34 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6VV-0005N2-0l
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:22:33 +0100
Received: (qmail 7203 invoked by uid 500); 29 Jan 2004 07:21:13 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7085 invoked from network); 29 Jan 2004 07:21:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025g-Eb
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908211800BB
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=143
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:23:17 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6WF-0003IB-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:23:19 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6WC-0005Ot-7R
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:23:16 +0100
Received: (qmail 7540 invoked by uid 500); 29 Jan 2004 07:21:16 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7439 invoked from network); 29 Jan 2004 07:21:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025a-3t
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908211800B7
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=4 Fuz2=150
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:24:02 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Wx-0003UF-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:24:03 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Wu-0007i2-Mu
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:24:00 +0100
Received: (qmail 7567 invoked by uid 500); 29 Jan 2004 07:21:16 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7455 invoked from network); 29 Jan 2004 07:21:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025a-Pu
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908211800BE
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=1 Fuz1=1 Fuz2=18
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:34:41 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6hD-0006Ij-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:34:39 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6hC-0008Ad-BJ
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:34:38 +0100
Received: (qmail 57100 invoked by uid 500); 29 Jan 2004 07:31:36 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 56977 invoked from network); 29 Jan 2004 07:31:35 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:35 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V4-Gs
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:21 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908312100ED
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=2 Fuz1=3 Fuz2=106
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:32:42 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6fK-0005ne-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:42 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6fJ-0005ky-5F
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:41 +0100
Received: (qmail 54759 invoked by uid 500); 29 Jan 2004 07:31:13 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54642 invoked from network); 29 Jan 2004 07:31:13 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:13 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e3-0002V4-Oz
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:23 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908312000E7
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=165
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:33:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6gZ-00067Q-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:59 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6gU-000884-EL
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:54 +0100
Received: (qmail 55053 invoked by uid 500); 29 Jan 2004 07:31:16 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54903 invoked from network); 29 Jan 2004 07:31:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V5-Sm
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:21 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908312100F1
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=2 Fuz1=3 Fuz2=103
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:22 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:31:58 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6ee-0005a3-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:00 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6eb-00082i-5z
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:57 +0100
Received: (qmail 54686 invoked by uid 500); 29 Jan 2004 07:31:13 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54632 invoked from network); 29 Jan 2004 07:31:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e3-0002V5-DX
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:23 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908312000E0
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=1 Fuz1=2 Fuz2=2
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:22 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:33:19 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6fv-0005xw-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:19 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6fu-0005m7-6O
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:18 +0100
Received: (qmail 55006 invoked by uid 500); 29 Jan 2004 07:31:16 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54754 invoked from network); 29 Jan 2004 07:31:13 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:13 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V5-5Q
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f04012908312000E9
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=174
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Holger de Wall ([EMAIL PROTECTED]),

Your message
Re: Apache + Tomcat RH Setup, sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:48 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:45:50 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6s2-00012y-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:50 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6s1-Ip-Cg
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:49 +0100
Received: (qmail 6930 invoked by uid 500); 29 Jan 2004 07:42:46 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 6782 invoked from network); 29 Jan 2004 07:42:44 -
Received: from unknown (HELO morr.kel.de.core.tng.de) (213.178.66.5)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:42:44 -
Received: by morr.kel.de.core.tng.de (Postfix, from userid 10)
id 3053B6E43F6; Thu, 29 Jan 2004 08:42:46 +0100 (CET)
Received: from lkv39 (lkv39.lkv-sh.de [143.1.1.169])
by isdn-gw.lkv-sh.de (8.8.8/8.8.8) with ESMTP id IAA01190
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:14:01 +0100
Content-Type: text/plain;
  charset=iso-8859-1
From: Holger de Wall [EMAIL PROTECTED]
Organization: Landeskontrollverband Schleswig-Holstein e. V.
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: Apache + Tomcat RH Setup
Date: Thu, 29 Jan 2004 08:20:06 +0100
User-Agent: KMail/1.4.3
References: [EMAIL PROTECTED]
In-Reply-To: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Message-Id: [EMAIL PROTECTED]
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=1 Fuz1=1 Fuz2=1
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:43:42 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6py-ON-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:43:42 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6px-0006EP-1J
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:43:41 +0100
Received: (qmail 97862 invoked by uid 500); 29 Jan 2004 07:41:17 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97660 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vM-Hh
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290841220119
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=4 Fuz2=202
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:42:11 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6oX-0008OQ-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:13 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6oU-7M-C4
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:10 +0100
Received: (qmail 97668 invoked by uid 500); 29 Jan 2004 07:41:15 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97567 invoked from network); 29 Jan 2004 07:41:14 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:14 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nk-0002vM-TZ
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:24 +0100
Date: Thu, 29 Jan 2004 08:41:21 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290841210113
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=15
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:44:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6rB-mp-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:57 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6rA-GL-N8
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:56 +0100
Received: (qmail 97991 invoked by uid 500); 29 Jan 2004 07:41:18 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97673 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vS-SA
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129084122011C
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=24
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:44:20 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6qa-aH-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:20 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6qZ-Dk-81
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:19 +0100
Received: (qmail 97895 invoked by uid 500); 29 Jan 2004 07:41:17 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97679 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nm-0002vM-AR
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:26 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129084122011E
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=22
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:42:57 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6pE-Bg-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:56 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6pE-AA-5A
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:56 +0100
Received: (qmail 97770 invoked by uid 500); 29 Jan 2004 07:41:16 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97628 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vS-8R
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290841220117
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=2 Fuz1=2 Fuz2=18
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:50:46 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6wo-0002Wf-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:50:46 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6wf-Xy-CN
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:50:37 +0100
Received: (qmail 27397 invoked by uid 500); 29 Jan 2004 07:46:08 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 27281 invoked from network); 29 Jan 2004 07:46:07 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:46:07 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039F-Jw
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:50 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290845500152
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:49:56 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6w0-0002GS-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:56 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6vz-VW-O0
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:55 +0100
Received: (qmail 26083 invoked by uid 500); 29 Jan 2004 07:45:55 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25981 invoked from network); 29 Jan 2004 07:45:54 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:54 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s7-00039F-Ni
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:55 +0100
Date: Thu, 29 Jan 2004 08:45:49 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f040129084549014E
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SIHOPE-DCC-3-Metrics: basil 1085; Body=1 Fuz1=1 Fuz2=64
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:47:18 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6tS-0001Sv-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:18 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6tR-Nu-Jw
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:17 +0100
Received: (qmail 24968 invoked by uid 500); 29 Jan 2004 07:45:45 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 24835 invoked from network); 29 Jan 2004 07:45:43 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:43 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s5-00039A-Vs
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:54 +0100
Date: Thu, 29 Jan 2004 08:45:49 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290845490148
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-meer-Metrics: basil 1086; Body=2 Fuz1=2 Fuz2=2
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:48:38 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6uk-0001r0-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:38 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6ug-0006RE-Ts
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:35 +0100
Received: (qmail 25501 invoked by uid 500); 29 Jan 2004 07:45:49 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25391 invoked from network); 29 Jan 2004 07:45:48 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:48 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039L-2M
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:50 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290845500150
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=225
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:49:17 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6vL-00023k-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:15 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6vK-0006TU-5K
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:14 +0100
Received: (qmail 25696 invoked by uid 500); 29 Jan 2004 07:45:51 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25561 invoked from network); 29 Jan 2004 07:45:50 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:50 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s9-00039F-7d
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:57 +0100
Date: Thu, 29 Jan 2004 08:45:52 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290845520157
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=230
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED], sent to [EMAIL PROTECTED]

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: [EMAIL PROTECTED]
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:47:56 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6u8-0001fA-00
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:00 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6u3-0006P2-Ol
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:55 +0100
Received: (qmail 25273 invoked by uid 500); 29 Jan 2004 07:45:47 -
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 Users List tomcat-user.jakarta.apache.org
Reply-To: Tomcat Users List [EMAIL PROTECTED]
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25160 invoked from network); 29 Jan 2004 07:45:46 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:46 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039L-S0
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:51 +0100
Message-Id: [EMAIL PROTECTED]
from: [EMAIL PROTECTED] [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary==_NextPart_f0401290845510155
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=219
x-recipient:[EMAIL PROTECTED]




- THIS IS AN AUTOMATED ERROR REPLY ---

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

  1   2   3   4   >