I am trying to deploy a web appliction on Weblogic 8.1 Server which already runs on Resin Server.
On deploying I get the following errors on the console:
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver__appsdir_portal_dir_portal\jsp_servlet\__gtbaseframe.java:17: '.' expected
probably occurred due to an error in /gtBaseframe.jsp line 2:
<%@ page import="ClientSessionInfo" /%>
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver__appsdir_portal_dir_portal\jsp_servlet\__gtbaseframe.java:18: '.' expected
probably occurred due to an error in /gtBaseframe.jsp line 3:
<%@ page import="GenetrialsPortal" /%>
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver__appsdir_portal_dir_portal\jsp_servlet\__gtbaseframe.java:134: cannot resolve symbol
probably occurred due to an error in /gtBaseframe.jsp line 6:
ClientSessionInfo gtSession = (ClientSessionInfo) session.getValue ( GenetrialsPortal.SESSION_VALUE_CLIENT_INFO );
C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver__appsdir_portal_dir_portal\jsp_servlet\__gtbaseframe.java:134: cannot resolve symbol
probably occurred due to an error in /gtBaseframe.jsp line 6:
ClientSessionInfo gtSession = (ClientSessionInfo) session.getValue ( GenetrialsPortal.SESSION_VALUE_CLIENT_INFO );
From the above error (Can not resolve symbol), it seems that the
jsp is not getting the class file from WEB-INF/classes.
Can some one Please guide me how to resolve this error?