Re: Illegal IMail List Server Command! SPAM?

2005-05-17 Thread Sharad Ramadas
How to get rid of this ?

On 5/16/05, Dakota Jack [EMAIL PROTECTED] wrote:
 Getting rid of the thirty or so deadend emails from this would be nice?
 
 On 5/16/05, List Server [EMAIL PROTECTED] wrote:
  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]
 
 
 
 --
 You can lead a horse to water but you cannot make it float on its back.
 ~Dakota Jack~
 
 -
 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: localhost:8080 only

2005-01-05 Thread Sharad Ramadas
I think you might have to set the DNS server.

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



Re: Newbie question on Database and struts

2004-12-23 Thread Sharad Ramadas
You dont need an array of data beans. Store your data bean in an
ArrayList or in a Vector.

e.g

ArrayList empList = new ArrayList();
Employee emp = null;
while(rst.next())
{
   emp = new Employee();
   /*
  Fill the employee object with the records from the database.

   */

 empList.add(emp);
}

return empList;

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



Re: Does Tomcat Rollback transactions automatically.

2004-11-23 Thread Sharad Ramadas
no it doesn't automatically rollback. You will have to use the
rollback method of the connection object.

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



Re: Tomcat 4.1.30 not restoring JDBC connections

2004-11-22 Thread Sharad Ramadas
Whenever I encounter this problem I re-start the tomcat.


On Mon, 22 Nov 2004 11:11:14 -0600, Alex Korneyev
[EMAIL PROTECTED] wrote:
 Hello All,
 
 has anyone ever experienced the following:
 
 we are using Tomcat's 4.1.30 connection pool.
 
 For some reason, when network connection goes down, even for 1 sec,
 connection pool is not smart enough to either get rid of a connection
 and try get another one, or reconnect;
 
 any ideas?
 
 Alex K.
 
 -
 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: Servlet problem with Tomcat

2004-11-17 Thread Sharad Ramadas
Did you try setting the classpath for the JAR file. You need to give
the entire path till the JAR file.

-Sharad

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



Re: Tomcat crashing

2004-11-17 Thread Sharad Ramadas
You can get this error if the database re-starts or shuts down. If you
re-start the tomcat you won't get this error.

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