Hi, you should check archives for the solution or better download JSR-000053 Java Servlet 2.3 and JavaServer Pages 1.2 Specifications from http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ This is necessary reference for everyone dealing with the servlet/JSP technology.
And now some explanations to simplify your work Put your bean in a package, for example com.mypackage.MyBean The class file for MyBean is to placed in app/WEB-INF/classes/com/mypackage directory. In order to instantiate MyBean in your JSP document you have to modify appropriately 'class' attribute <jsp:useBean id="mybean" scope="application" class="com.mypackage.MyBean" /> The .jsp files place in TOMCAT_HOME/myapp/ directory Define your app in TOMCAT_HOME/conf/server.xml file by adding the simplest context as follows <Context path="/myapp" docBase="myapp" debug="0" reloadable="true"/> Regards, Piotr K. ==========================================================================To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
