- This topic has 2 replies, 2 voices, and was last updated 17 years ago by
khalidhajsaleh.
-
AuthorPosts
-
khalidhajsalehMemberI 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
June 26, 2008 at 6:56 pm #286361
Loyal WaterMemberWere you able to start the weblogic server without issues? Are there any error messages that show up in the console when you start your server?
I would suggest you cross post your query on the weblogic forums as well.
June 26, 2008 at 7:05 pm #286365
khalidhajsalehMemberweblogic start correctly however only whenever I try to access the jsps I get this problem. This problem happens only when I start weblogic through myeclipse. If I start my weblogic through the standard console, I do not see the same problem.
-
AuthorPosts