Hi, I am attempting to port the Java Pet Store sample app to another J2EE platform. The interesting thing I've discovered is that there are certain locations in the application where a JSP attempts to make use of a <jsp:useBean> tag to load a bean when that class is in fact not a bean! For example, the enteruserdata.jsp page uses a useBean tag to load the AccountWebImpl bean. However, AccountWebImpl does not have a no arg constructor (in fact, niether does AccountModel, it's parent class). This class is therefore NOT A BEAN! The surprising thing is that the RI apparently doesn't care that AccountWebImpl isn't a bean. Can someone please clarify this for me? Am I wrong in assuming that the class a useBean loads must be a JavaBean? -- Jon =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff EJB-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
