Hi All, I am running Tomcat 3.1 with jdk1.2.2 under WinNt 4.0. Inside of my JSP page I import class files (they are in the class path) using page directive. useBean works only if I provide full path to my class. Example: Header.jsp <%@ page import="com.comp.app.trsite.bean.v1_0.*, com.comp.feutil.*, com.comp.WebUtil.*" errorPage="\v1_0\Error.jsp" %> ... Profile.jsp <%@ include file="Header.jsp" %> // this doesn't work // this works. ... I tried copying all the files under /appContext/Web-inf/classes directory but it didn't help. Can anyone explain? Thanks, Mark. BTW, I was able to integrate Visual Cafe 4.0 with Tomcat using instructions provided for JBuilder.