I'm working on an application using Struts and JSF 2 with RichFaces 4.5.4.
Everything works fine when the application runs on a Tomcat(7) server. But when I run it on a WebLogic(11gR1-10.3.6) server the JS resources are not loaded.
The rich:popupPanel gets the error: ReferenceError: RichFaces is not defined And when I try to run a jQuery script I get: ReferenceError: jQuery is not defined
I'm using <h:head>
instead of <head>
and I have this parameters in my web.xml:
<context-param>
<param-name>org.richfaces.LoadStyleStrategy</param-name>
<param-value>ALL</param-value>
</context-param>
<context-param>
<param-name>org.richfaces.LoadScriptStrategy</param-name>
<param-value>ALL</param-value>
</context-param>