"Ansgar W. Konermann" wrote:

> Hi all,
>
> I (still) have a problem with the context of a servlet.
>

99% of the time, this error is caused by your servlet having an init method:

    public void init(ServletConfig config) throws ServletException {

        ...

    }

but failing to call:

    super.init(config);

The best way to avoid this mistake is to implement the no-args version of init() 
instead.

Craig McClanahan



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

Reply via email to