On Sat, 10 Mar 2001, Quentin Sarafinchan wrote:
> I think I have the web.xml and server.xml files configured correctly now, buy when
>executing the servlet, I receive this message ....
>
> java.lang.IllegalAccessException: ChangeRequest/CR
>
This error will happen if you do not declare your servlet to be public, or
you declare it without a zero-argument constructor. You should define
your servlet like this:
public class CR extends HttpServlet {
...
}
and not include a constructor at all.
> when I use this URL: http://boo.polartime.com:8081/ChangeRequest/servlet/CR
>
> The class is now completely empty, only the skeleton remains for a HttpServlet
>remains. I'm puzzled.
>
> Cheers
> Quentin J Sarafinchan
>
Craig McClanahan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]