I have a project that runs correctly on tomcat. However, when I try to deploy the same project and code on weblogic 10, I keep on getting jsp errors.
Most of my jsps, include a jspf file that has java script code in it. For some reason, weblogic complains that the jspf file is not found. here is the error I get on the screen:
^-------------------------------------------------------------^
DCUserLoginDisplay.jsp:3:18: Error in "C:\bea\user_projects\domains\mydomain\applications\Sterling\WEB-INF\web\en\US\common\cmgtinclude.jspf" at line 1: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ include file="../../common/cmgtinclude.jspf"%>
^-----------------------------^
my jsp does include that online of code to include the jspf in it:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ page contentType="text/html; charset=UTF-8" language="java" errorPage="../../error.jsp" %>
<%@ include file="../../common/cmgtinclude.jspf"%>
I made sure that my cmgtinclude.jspf is in the correct location. Of course, since the same code works in tomcat, I believe it is a configuration issue.
I would appreciate any help.
Khalid