I have one big problem
i have these imports
<%@ page import="java.util.*" %>
<%@ page import="se.ibs.ns.cf.*" %>
<%@ page import="se.ibs.ccf.*" %>
<%@ page import="se.ibs.ns.icat.*" %>
<%@ page import="se.ibs.bap.*" %>
<%@ page import="se.ibs.bap.web.*" %>
<%@ page import="se.ibs.bap.asw.cf.*" %>
everyone works fine except "se.ibs.ns.icat.*"
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.
i have these imports
<%@ page import="java.util.*" %>
<%@ page import="se.ibs.ns.cf.*" %>
<%@ page import="se.ibs.ccf.*" %>
<%@ page import="se.ibs.ns.icat.*" %>
<%@ page import="se.ibs.bap.*" %>
<%@ page import="se.ibs.bap.web.*" %>
<%@ page import="se.ibs.bap.asw.cf.*" %>
everyone works fine except "se.ibs.ns.icat.*"
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.