GenericServlet.getServletConfig buggy?

2001-02-22 Thread Ansgar W. Konermann
Hi all, I (still) have a problem with the context of a servlet. Within a class derived from HttpServlet (nop.Receiver), this is my doGet method: - public void doGet(HttpServletRequest rq, HttpServletResponse rs) throws IOException, ServletException {

Re: GenericServlet.getServletConfig buggy?

2001-02-22 Thread Craig R. McClanahan
"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: