I don't believe that you should "extend" a servlet class in a JSP. I believe
you have to extend a class which implements one of either JspPage or
HttpJspPage interfaces. The implementation needs to have the _jspService(),
jspInit() and jspDestroy() methods present and invoked from the servlet
equivalents. Section 3.2.4, page 74 of the JSP Spec (this is in V1.0)
explains this.
Have a look and try and create such an implementation which contains the
behaviour etc. you want to inherit, then extend this implementation in your
JSP page.
Hope this helps,
Dan
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets