Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Hiding port number when using mod_jk

2005-05-16 Thread Vamsee Kanakala
Hi List,
 I have setup the mod_jk on Apache2 and it is forwarding the
requests to tomcat 5.5.9  correctly. However, if I click any of the
links in my tomcat webapp, the port 8080 is showing up. Is there any way
I can avoid this?
TIA,
Vamsee.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Tomcat using endorsed xalan stuff conflicts with java 1.5's renamed xalan impl

2005-05-16 Thread Daniel Sun
Hi all,
I hit the following exception in my servelet.
javax.xml.transform.TransformerFactoryConfigurationError: Provider
org.apache.xalan.processor.TransformerFactoryImpl not found

After googling, I believe the cause of it is that the endorsed
xml-apis.jar somehow sets the system property
javax.xml.transform.TransformerFactory to
org.apache.xalan.processor.TransformerFactoryImpl, but the JAVA 1.5
has renamed the whole package to com.sun.org.apache.*. If the
xalan.jar is not available in the endorsed folder, hence the
exception.

I can solve this issue in my case by doing either of the following two:
1. System.setProperty(javax.xml.transform.TransformerFactory,
com.sun.org.apache.xalan.internal.xsltc.traxTransformerFactoryImpl).
But if on a Tomcat server, another web app needs some functionality only
available in non-sun implementation (eg. Xalan). Will my setting break
their setting? I mean is the setProperty affecting other web apps
running in tomcat?
 
2. Disable Tomcat using endorsed folder, which I guess it will result
using the default sun implementation. Then I want ask why Tomcat still
uses this endorsed folder (by setting -D on JAVA invoke), it works fine
without them (I have even seen some workarounds suggested on the net
that just renaming the endorsed to endorsed.useless :)

I understand there is the 3rd option, which is to download the full
xalan.jar and put it in the endorsed folder, but I just don't want to
ask end user to do this. You know we need to keep the end users hand
clean as much as possible.

Thanks in advance for clearing this up for me.

Regards,
Daniel

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



Re: Hiding port number when using mod_jk

2005-05-16 Thread Lutz Zetzsche
Hi Vamsee,

Am Montag, 16. Mai 2005 09:00 schrieb Vamsee Kanakala:
   I have setup the mod_jk on Apache2 and it is forwarding the
 requests to tomcat 5.5.9  correctly. However, if I click any of the
 links in my tomcat webapp, the port 8080 is showing up. Is there any
 way I can avoid this?

how are these links built / generated in your pages?

Best wishes
Lutz

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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Re: Hiding port number when using mod_jk

2005-05-16 Thread Anto Paul
 Am Montag, 16. Mai 2005 09:00 schrieb Vamsee Kanakala:
I have setup the mod_jk on Apache2 and it is forwarding the
  requests to tomcat 5.5.9  correctly. However, if I click any of the
  links in my tomcat webapp, the port 8080 is showing up. Is there any
  way I can avoid this?
 

If you mean that Tomcat is still listening on port 8080, you must
comment the connector element in server.xml which tells Tomcat to
listen on port 8080.
You should check your application source to see that no port no is
hard coded in it.

-- 
rgds
Anto Paul

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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! en

2005-05-16 Thread en
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Define allow IP range for one port on Tomcat

2005-05-16 Thread Rui Monteiro

Is it possible (and if it's, how can one do it) to configure on Tomcat
an IP range allowed to access on one port?
I have two ports (one Connector SSL and another one plain) and I want to
limit the acces to one of the ports (the plain one) to the intranet, and
the other one free from all IP limitation. 
By what I saw it seems that the definition of allowed ports must be
common to all ports where a wep application is listening is it sadly
true?

Thank you,
RF



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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



RV: Define allow IP range for one port on Tomcat

2005-05-16 Thread Rui Monteiro


I guess I found the answer. You just have to define an address on your
plain connector which correponds to the intranet address so from outside
this port won't be reacahable for the web app, right?
If you have better solutions please say.
Thank you anyway,
RF


-Mensaje original-
De: Rui Monteiro [mailto:[EMAIL PROTECTED] 
Enviado el: lunes 16 de mayo de 2005 11:02
Para: tomcat-user@jakarta.apache.org
Asunto: Define allow IP range for one port on Tomcat


Is it possible (and if it's, how can one do it) to configure on Tomcat
an IP range allowed to access on one port?
I have two ports (one Connector SSL and another one plain) and I want to
limit the acces to one of the ports (the plain one) to the intranet, and
the other one free from all IP limitation. 
By what I saw it seems that the definition of allowed ports must be
common to all ports where a wep application is listening is it sadly
true?

Thank you,
RF



-
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 such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Tomcat banner

2005-05-16 Thread André Cruz
Hello!

Is there anyway to remove the tomcat banner that appears in the header
of all pages served by tomcat?

I don't want to disclose that information to my users.

Thanks.
André Cruz


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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



jakarta iis connector under heavy load

2005-05-16 Thread Anatoly Kern
Hello!

One question about jakarta connector on IIS (isapi filter):
Our servlet under heavy load does not receive some pages, client get
error The connection with the server was reset or The server returned
an invalid or unrecognized response
It was with ~ 100 connections per minute.
I tried to tune as described in
http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
(recovery_options=3,prepost_timeout=100,connect_timeout=100) but all
fails with the same result

With direct connection to Tomcat (without JK-connector) all works fine.
Isapi filter debug log shows nothing unusual.
Had anybody have successfull experience with heavyloaded IIS
JK-connector?

Anatoly

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



Sample http.conf and worker.properties file

2005-05-16 Thread Rehman Adil \(KI/EAB\)

Hi,

Could anyone send me the sample http.conf and worker.porperties file for 
mod_jk with Apache 2 and Tomcat 5 on windows 2000 ?

Any help will be highly appreciated.

Regards,
Rehman Adil

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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Re: Hiding port number when using mod_jk

2005-05-16 Thread Vamsee Kanakala
Anto Paul wrote:
If you mean that Tomcat is still listening on port 8080, you must
comment the connector element in server.xml which tells Tomcat to
listen on port 8080.
You should check your application source to see that no port no is
hard coded in it.
 

Thanks Anto  Lutz, the problem was at two places: I didn't configure 
mod_jk.conf properly and  the application I deployed had some bad 
deployment descriptors. I removed that application, uncommented the 
connector and everything works correctly now.

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


Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Re: Define allow IP range for one port on Tomcat

2005-05-16 Thread Peter Rossbach
Hey,
I thing you must wrote a Engine or Host Valve.
Use request.getConnector() to get the current used connector object.
As base implementation you can easy subclass ValveBase or better 
RequestFilterValve ( see RequestAddrValve and RequestHostValve as example)

Peter
Rui Monteiro schrieb:
Is it possible (and if it's, how can one do it) to configure on Tomcat
an IP range allowed to access on one port?
I have two ports (one Connector SSL and another one plain) and I want to
limit the acces to one of the ports (the plain one) to the intranet, and
the other one free from all IP limitation. 
By what I saw it seems that the definition of allowed ports must be
common to all ports where a wep application is listening is it sadly
true?

Thank you,
RF

-
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: jakarta iis connector under heavy load

2005-05-16 Thread Peter Rossbach
Has you set the cachesize and cache_timeout at your tcp worker ? I have 
read that IIS default use only one
TCP socket as default.

Peter
PS: 100 request per minute is not a heavy load and normal high end PC :-)
Anatoly Kern schrieb:
Hello!
One question about jakarta connector on IIS (isapi filter):
Our servlet under heavy load does not receive some pages, client get
error The connection with the server was reset or The server returned
an invalid or unrecognized response
It was with ~ 100 connections per minute.
I tried to tune as described in
http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
(recovery_options=3,prepost_timeout=100,connect_timeout=100) but all
fails with the same result
With direct connection to Tomcat (without JK-connector) all works fine.
Isapi filter debug log shows nothing unusual.
Had anybody have successfull experience with heavyloaded IIS
JK-connector?
Anatoly
-
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]


Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Re: website hosting

2005-05-16 Thread David Smith
Just to add my two cents to this -- you can use jsvc from the
commons-daemon project to start Tomcat with root long enough to get port
80 and then drop root for normal run.

Running Apache in front of Tomcat adds an extra layer of complexity and
more processing.  Take a look at what you need and if the extra layer is
really worth it before putting up Apache in front of Tomcat.  For a site
that's mostly dynamic and lots of decision making, just use Tomcat w/
jsvc and drop Apache altogether.

--David

Lutz Zetzsche wrote:

Hi Tomislav,

Am Sonntag, 15. Mai 2005 16:10 schrieb t.n.a.:
  

Lutz Zetzsche wrote:


As regards performance, running Apache in front of Tomcat is not
preferable. A standalone Tomcat is faster than a Tomcat behind an
Apache.
  

I'm not speaking from my own experiance, but I've done some reading
some time ago and the best practice I've found is to have apache
serve static content because it's faster and comes with a whole lot
of modules and have Tomcat serve the dynamic content - don't know if
we're talking about the same thing.



Well, what I mean is that Tomcat can serve dynamic content faster if it 
runs standalone so that the requests are directly handled and the pages 
are directly served by Tomcat.

Also, the gap between Tomcat and Apache is closing as regards the 
performance in serving static content.

Here are a few pros and cons for the Apache-Tomcat combination:

   http://jakarta.apache.org/tomcat/faq/connectors.html#integrate

My personal point of view is that I would always try to avoid to run a 
Tomcat behind an Apache, as this can sometimes significantly impair the 
performance when serving dynamic content from Tomcat.


Best wishes

Lutz

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

  



-- 
===
David Smith
Network Operations Supervisor
Department of Entomology
College of Agriculture  Life Sciences
Cornell University
2132 Comstock Hall
Ithaca, NY  14853
Phone: 607.255.9571
Fax: 607.255.0939



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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



No such list! s

2005-05-16 Thread s
Valid Lists


New Atlanta List Server
---

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

   bluedragon-interest
   jturbo-interest
   servletexec-interest

   bluedragon-customers
   jturbo-customers
   servletexec-customers

   bluedragon-announce
   newatlanta-announce




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



Illegal IMail List Server Command!

2005-05-16 Thread List Server
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]



Illegal IMail List Server Command!

2005-05-16 Thread List Server
New Atlanta List Server General Help File
-

Lists hosted by this server are:

   bluedragon-interest
   servletexec-interest
   jturbo-interest

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]



No such list! s

2005-05-16 Thread 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]



Re: jakarta iis connector under heavy load

2005-05-16 Thread Mladen Turk
Anatoly Kern wrote:
Hello!
http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
(recovery_options=3,prepost_timeout=100,connect_timeout=100) but all
Hi,
prepost_timeout and connect_timeout are defined in milliseconds,
Like you said read the:
http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
and you will find that statement.
So, under high load it's probable that your request will not be served
inside 100 milliseconds, and that's why mod_jk will think your tomcat
is dead.
Since you probably meant to set that value to seconds, just multiply
with 1000.
Regards,
Mladen.
-
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]



  1   2   >