Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

<%@ page import=""%>

Status
Not open for further replies.

porto2001

Programmer
Mar 7, 2001
24
PT
I have one big problem

i have these imports

<%@ page import=&quot;java.util.*&quot; %>
<%@ page import=&quot;se.ibs.ns.cf.*&quot; %>
<%@ page import=&quot;se.ibs.ccf.*&quot; %>
<%@ page import=&quot;se.ibs.ns.icat.*&quot; %>
<%@ page import=&quot;se.ibs.bap.*&quot; %>
<%@ page import=&quot;se.ibs.bap.web.*&quot; %>
<%@ page import=&quot;se.ibs.bap.asw.cf.*&quot; %>

everyone works fine except &quot;se.ibs.ns.icat.*&quot;
This class exists and it's in the same jar with the other classes.
When i run the servlet that calls the jsp with these imports, the error 'Package se.ibs.ns.icat not found in import'. This problem appears whith some classes and the others work fine. I don't know why i have this problem.
 
Are you sure that:
1) The package name is spelled correctly and is a valid package.
2) The package is on the Servlet Engine CLASSPATH.

I have never had a problem like this that didn't end up being a stupid mistake on my part.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top