I have an EAR deployed on our development server (WebLogic 10.3.3) that runs fine. Yet, when I take that same EAR and deploy it on a WebLogic 10.3.6 server running on my desktop, the deployment succeeds but I see an error when loading a JSP:
weblogic.servlet.jsp.CompilationException: Failed to compile JSP /webclient/login/login.jsp
login.jsp:11:92: The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files
I'm assuming that the EAR references some classes outside the EAR when running on the demo that I don't have on my desktop.
From what I can tell, on both machines the system classpath is simply the current dir. The manifest.mf file in the EAR directory/meta-inf is empty and I didn't see manifest.mf files elsewhere that pointed outside the EAR.
What settings or files should I be looking at to resolve this?
Thanks