1 2 3 Previous Next 35 Replies Latest reply on Dec 4, 2007 3:43 PM by pmuir

    Running the booking example on JBoss with the JSF 1.2 RI

    gavin.king

      I've seen some questions about how to run Seam with the 1.2 RI. So here are step-by-step instructions for JBoss AS. (I also need to put together instructions for glassfish).

      (1) copy jsf-api.jar, jsf-impl.jar, el-api.jar, el-impl.jar to server/default/deploy/tomcat/jbossweb-tomcat55.sar/jsf-libs
      (2) delete myfaces-xxx.jar from that folder
      (3) Edit server/default/deploy/tomcat/jbossweb-tomcat55.sar/conf/web.xml, replacing "myfaces-api.jar" with "jsf-api.jar".

      (4) edit examples/booking/resources/WEB-INF/web.xml, commenting the MyFaces listener, uncommenting the RI listener
      (5) remove el-*.jar from examples/booking/resources/WEB-INF/lib

        • 1. Re: Running the booking example on JBoss with the JSF 1.2 RI
          gavin.king

          (6) Add this to faces-config.xml:

          <application>
           <el-resolver>org.jboss.seam.jsf.SeamELResolver</el-resolver>
          </application>


          • 2. Re: Running the booking example on JBoss with the JSF 1.2 RI
            gluonvision

            While in principle the JSF-1.2 seam-booking-demo from the new beta
            runs very nicely on JBoss 5.0.0. beta1 (congratulations !),
            there seems to still be the old encoding issue on Linux.
            E.g., the Meliá White House Hotel shows up as
            Meli? White House

            What to do ? Is it a Tomcat configuration issue?

            My (openSUSE 10.2beta2)-Linux-box does have en_US.UTF-8, etc. :

            rolfm@gluon:~/mjsf3/jboss-5.0.0.Beta1/server/default/log$ uname -a
            Linux gluon 2.6.18.2-4-default #1 SMP Tue Nov 7 16:02:06 UTC 2006 x86_64 x86_64 x86_64 GNU/Linux

            rolfm@gluon:~/mjsf3/jboss-5.0.0.Beta1/server/default/log$ echo $LANG
            en_US.UTF-8

            rolfm@gluon:~/mjsf3/jboss-5.0.0.Beta1/server/default/log$ grep UTF boot.log
            02:51:11,672 DEBUG [ServerInfo] sun.jnu.encoding: UTF-8
            02:51:11,673 DEBUG [ServerInfo] file.encoding: UTF-8

            rolfm@gluon:~/mjsf3/jboss-5.0.0.Beta1/server/default/log$ java -version
            java version "1.5.0_09"
            Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_09-b03)
            Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_09-b03, mixed mode)

            ------------------------------------------------------------------------------------------------------

            BTW: shouldn't deployment of jboss-seam-booking.ear on GlassFish work?
            It does not look like it does (I tried to test with a non-Tomcat server).

            Rolf

            • 3. Re: Running the booking example on JBoss with the JSF 1.2 RI
              ssilvert

               

              (4) edit examples/booking/resources/WEB-INF/web.xml, commenting the MyFaces listener, uncommenting the RI listener


              Note that in JBoss 5, or any other JEE5 container, you don't need any listener at all. The container will see that your WAR is using JSF and initialize it automatically.

              In JEE5, you also don't need to include or replace jars for the JSF impl. You just need component libraries, application code, and frameworks such as Seam and Facelets.

              Stan

              • 4. Re: Running the booking example on JBoss with the JSF 1.2 RI
                gavin.king

                 

                BTW: shouldn't deployment of jboss-seam-booking.ear on GlassFish work?


                No, GlassFish needs the ugly-ass <ejb-link> stuff, which I refuse to put in the basic example.

                Michael is going to add an example that deploys to glassfish. It will be identical, just with the additional stuff in web.xml.

                • 5. Re: Running the booking example on JBoss with the JSF 1.2 RI
                  thejavafreak

                  Nice guide. Really nice

                  Now I can run a seam-gen generated application on JBoss AS 5.0.0Beta1

                  I'm loving this

                  • 6. Re: Running the booking example on JBoss with the JSF 1.2 RI

                    I'm trying to get JSF1.2 working with Jboss4.0.5GA and I followed the instuctions above to the letter but get the following error when I try and deploy the booking demo:

                    java.lang.NoClassDefFoundError: javax/el/ELResolver


                    I've put the el-api/ri.jar in the jsf-libs dir. One other thing I noticed was that in step (3) myfaces-api.jar was not referenced, rather myfaces-impl.jar was referenced. I've tried by jsf-impl.jar and jsf-api.jar in place of this with no effect.

                    Thanks.

                    • 7. Re: Running the booking example on JBoss with the JSF 1.2 RI
                      wsollers

                      You can run jsf 1.2 ri on jboss 4.0.5 because I do. Here is the caveat, jboss 4.0.5 ships with the tomcat 5.5.x sar which is jsp 2.0 compliant not jsp 2.1 which i think you need for jsf 1.2. just nav to http://juel.sourceforge.net/ and snag their latest api & impl for the java unified expression langauge and add it to your ear as a regular java module. i haven't seen any side effects.

                      • 8. Re: Running the booking example on JBoss with the JSF 1.2 RI

                        Thanks for the reply wsollers, do you also use facelets? It's now complaining that it can't find javax/servlet/jsp/tagext/JspIdConsumer. I think that you may inherently need to use facelets as jboss 4.0.x ship's with the wrong jsp/servlet version for jsf 1.2 ri.

                        • 9. Re: Running the booking example on JBoss with the JSF 1.2 RI
                          wsollers

                          I use facelets and faces 1.2 ri.

                          If this is a compiling issue the just put the javaee.jar from a recent jdk 5 in your classpath.

                          • 10. Re: Running the booking example on JBoss with the JSF 1.2 RI

                            Hi its not a compilation issue, the project builds fine. I think I'm going to have to give up and use the Sun Application Server 9 for development.

                            A couple of other questions, in the instuctions above, step 3, it asks you to replace "myfaces-api.jar" with "jsf-api.jar", but myfaces-api.jar is not in the web.xml, myfaces-impl.jar is. Did you replace this with jsf-impl.jar?

                            Also, I'm using some of the components from JSCreator (the project is actually being built using the Visual Web Pack for Netbeans) and after re-trying this procedure from scratch I now get this error:

                            WARNING: JSF1004: Cannot instantiate component of type com.sun.webui.jsf.faces.ValueBindingFilterCriteria
                            10:20:39,390 ERROR [[/Regal]] com.sun.webui.jsf.faces.ValueBindingFilterCriteria
                            javax.faces.FacesException: java.lang.ClassCastException: com.sun.webui.jsf.faces.ValueBindingFilterCriteria

                            Which suggests that I can't use the JS Creator components...

                            • 11. Re: Running the booking example on JBoss with the JSF 1.2 RI
                              ekusnitz

                              I'm also trying to get this running on jboss 4.0.5 and I observe the following:
                              1. In jbossweb-tomcat55.sar, the web.xml in the conf folder does not have any reference to "myfaces-api.jar", but it does refer to "myfaces-impl.jar"

                              2. When I try adding el-resolver to the application element, Eclispe IDE tells me it's invalid

                              Finally, which el-*.jar files are we supposed to be using? The ones in Seam?

                              • 12. Re: Running the booking example on JBoss with the JSF 1.2 RI

                                I don't use eclipse so I can't comment on that, but I think the tutorial asks you to use the el jars from the faclet project (https://facelets.dev.java.net/servlets/ProjectDocumentList?folderID=3635&expandFolder=3635&folderID=0) althogh wsollers suggested the juel el implementation packaged as a java module in your EAR and that did get rid of my initial class not found error.

                                I also don't use seam, so I can't comment on that either! Let me know if you have any luck...

                                • 13. Re: Running the booking example on JBoss with the JSF 1.2 RI
                                  ssilvert

                                   

                                  "ekusnitz" wrote:
                                  I'm also trying to get this running on jboss 4.0.5 and I observe the following:
                                  1. In jbossweb-tomcat55.sar, the web.xml in the conf folder does not have any reference to "myfaces-api.jar", but it does refer to "myfaces-impl.jar"


                                  There is a mistake in Gavin's original instructions. In conf/web.xml, you need to replace the reference to myfaces-impl.jar with jsf-impl.jar. Here is what it should look like when you are done:

                                  <init-param>
                                   <description>JSF standard tlds</description>
                                   <param-name>tagLibJar0</param-name>
                                   <param-value>jsf-libs/jsf-impl.jar</param-value>
                                  </init-param>



                                  "ekusnitz" wrote:

                                  2. When I try adding el-resolver to the application element, Eclispe IDE tells me it's invalid


                                  I also don't use Eclipse, so I'm not sure what's going on here. I suspect that Eclipse is looking at the JSF 1.1 DTD. <el-resolver> is new to JSF 1.2. Perhaps if you post the error I can help.

                                  "ekusnitz" wrote:

                                  Finally, which el-*.jar files are we supposed to be using? The ones in Seam?


                                  Yes, the ones in Seam should work fine.

                                  Note that all of this configuration is already done for you if you use JBoss 4.2 or JBoss 5.0. JBoss 5.0 has a beta that you can download now. JBoss 4.2 should have a beta available soon. Here are the instructions for using JSF in those releases:
                                  http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossWithJSFCDDL

                                  The goal for these releases is to make the usability of JSF much like that of JSP. In other words, you don't have to think about installation. You just use it if you want it. I'd love to get some feedback.

                                  Stan Silvert
                                  http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces

                                  • 14. Re: Running the booking example on JBoss with the JSF 1.2 RI

                                    Have anyone been able to run the book example with 4.0GA + JSF 1.2 yet?

                                    After followed the guide in here, I still run into problem (see log below).

                                    Can someone help? Thanks

                                    11:52:14,921 ERROR [STDERR] Feb 23, 2007 11:52:14 AM com.sun.faces.spi.InjectionProviderFactory createInstance
                                    INFO: JSF1033: Resource injection is DISABLED.
                                    11:52:14,937 ERROR [STDERR] java.lang.RuntimeException: java.lang.NoSuchMethodException: com.sun.faces.application.ApplicationImpl.addELResolver(javax.el.ELResolver)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.seam.jsf.SeamApplication12.(SeamApplication12.java:46)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.seam.jsf.SeamApplicationFactory.getApplication(SeamApplicationFactory.java:29)
                                    11:52:14,937 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.application(ConfigureListener.java:578)
                                    11:52:14,937 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:620)
                                    11:52:14,937 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:596)
                                    11:52:14,937 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:496)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3763)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4211)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5052)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                                    11:52:14,937 ERROR [STDERR] at $Proxy0.start(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                                    11:52:14,937 ERROR [STDERR] at $Proxy42.start(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.ws.integration.jboss.DeployerInterceptor.start(DeployerInterceptor.java:92)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                                    11:52:14,937 ERROR [STDERR] at $Proxy43.start(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                                    11:52:14,937 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                                    11:52:14,937 ERROR [STDERR] at $Proxy0.start(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                                    11:52:14,937 ERROR [STDERR] at $Proxy4.start(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                                    11:52:14,937 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:490)
                                    11:52:14,937 ERROR [STDERR] at java.lang.Thread.run(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] Caused by: java.lang.NoSuchMethodException: com.sun.faces.application.ApplicationImpl.addELResolver(javax.el.ELResolver)
                                    11:52:14,937 ERROR [STDERR] at java.lang.Class.getMethod(Unknown Source)
                                    11:52:14,937 ERROR [STDERR] at org.jboss.seam.jsf.SeamApplication12.(SeamApplication12.java:35)
                                    11:52:14,937 ERROR [STDERR] ... 141 more

                                    1 2 3 Previous Next