3 Replies Latest reply on Aug 6, 2008 4:37 PM by cljackhammer

    Richfaces problems

    cljackhammer

      Hello,

      I have configured a web application + Richfaces and deployed a war to Weblogic 10. I created a sample facelet with a rich panel and the page does not display the panel skin. I also tried some a4j commands and I am getting a a4j not found javascript error. It seems that some Javascript is not being generated. What is the problem. I followed the instructions in the developer guide and I have not experienced any execeptions deploying the war or loading the sample page.

        • 1. Re: Richfaces problems
          alexsmirnov

          Do you define ajax4jsf filter in the application web.xml ?

          • 2. Re: Richfaces problems
            cljackhammer

            Below are the entries in my web.xml file. I have other filters in web.xml as well. Should the Richfaces entries be before all of the other filters? I am not on my development PC, so I cannot try that right now.

            Thanks.


            <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
            </context-param>

            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>

            <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            REQUEST
            FORWARD
            INCLUDE
            </filter-mapping>

            • 3. Re: Richfaces problems
              cljackhammer

              The application works fine on Glassfish. Weblogic is the problem any ideas?