ooops, sent the email... sorry about that - here is the full explanation: i have a few classes: public abstract class Entity implements java.io.Serializable which defines protected static Entity select(int id, Connection con, Entity ent) throws SQLException and a few entity-classes inheriting from Entity, like public class Product extends Entity implements java.io.Serializable I wrote a test-app, calling Product.select, which compiles and works fine. Problem is, when I try to do the same in a JSP, I get a Jasper-Exception at compile-time: org.apache.jasper.JasperException: Unable to compile class for JSPwork\8080%2Fa\_0005cb_0002ec_jsp_0.java:84: No method matching select(int, java.sql.Connection, my.package.Product) found in class my.package.Product. What am I doing wrong? Is there some weird inheritance-problem I dont see? TIA Tom =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html
