Hi. I'm softlab on johnny and I have a problem. I FTPed my java classes and jars in my "public_html" folder. When I connect to the index.jsp page (directly present under the "public_html" folder), all is ok. When from the index.jsp page I try to load another JSP, which is in a subfolder of the "public_html" folder and imports classes from the jars (present in the "WEB-INF\lib" folder) or any java class in the "WEB-INF\classes" folder, referencing in the import the package they belong (), on the instantiation of the class (FunzioniSessione f = new FunzioniSessione() I get the following error: An error occurred at line: 6 in the generated java file Only a type can be imported. it.swlab.util.FunzioniSessione resolves to a package. What is the problem? Java classes and JSP files are under my "public_html" folder, with the structure they have under tomcat (JSPs directly under the "public_html" folder or in its subfolders, java classes in the "WEB-INF\classes" folder and in its subfolders, organized in packages, JARs in the with "WEB-INF\lib" folder). Thanks in advance softlab