On Thu, 6 Feb 2003, chris schild wrote:

> Date: Thu, 6 Feb 2003 19:19:29 -0600
> From: chris schild <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: Tomcat Users List <[EMAIL PROTECTED]>
> Subject: Re: SendMailServlet problem...
>
> Any ideas on what would make a servlet unavailable?

Here's a few methods:

* You specify a servlet class that doesn't exist in your webapp

* Your servlet class is not public, or doesn't have a public
  zero-arguments constructor

* Your init() method threw an exception

* You had some sort of error in your web.xml file, so Tomcat
  couldn't even initialize the webapp.

The answer to things like this is almost always in the log files that
Tomcat creates in the $CATALINA_HOME/logs directory.  It won't mark a
servlet (or an application) unavailable without documenting why it did so.

Craig

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

Reply via email to