1 2 Previous Next 16 Replies Latest reply on May 30, 2007 1:12 PM by christian.bauer

    JBoss AS 4.2.0, seam 1.2.1 and seamgen

    ge0ffrey

      Using JBoss AS 4.2.0 and seam 1.2.1
      I did
      seam setup
      (made an ear and ask to drop create the db each time)
      seam new-project
      seam generate-entities

      And then when I deployed that in my generated app with
      ant deploy

      I got this:
      java.lang.ClassNotFoundException: org.apache.myfaces.webapp.StartupServletContextListener

      The myfaces jars aren't in the ear or war, and jboss 4.2 seems to be using the sun implementation.
      Might I conclude from this it's recommended to use jboss 5beta2 instead?

        • 1. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen

          I don't think a SeamGen project from 1.2.1 will deploy correctly to JBoss 4.2.

          You can try the SeamGen from CVS. It should work against 4.2

          • 2. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
            ge0ffrey

            I just found out that the seam book I bough actually has the answer, page314 :)

            Apparently I need to do some stuff in the web.xml and the faces-config.

            Still it worries me that jboss 4.2 breaks backwards compatibility, because some jars might or might not be in it's classpath.
            This means if I write a seam app now for jboss x, the sysops can't just upgrade to jboss y, without me having to adjust my seam app?

            Is it possible to drop the jsf implementation I want to use in my war and ignore the one that the jboss app is proposing?

            • 3. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen

              ge0ffrey,

              Do not forget to remove the el-*.jar files from the app and from application.xml as well (on page 315 ;)).

              Go to the book web site to download all sample projects for 4.2.0 (as well as for 4.0.5).

              Yes, migrating from 4.0.5 to 4.2.0 is a pain because we switched from MyFaces to JSF RI. But that should stay stable for the foreseeable future -- meaning that migrating to JBoss AS 5.0 should be very easy.

              cheers
              Michael

              • 4. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                ge0ffrey

                Now I have this exception though:

                11:59:03,359 INFO [TomcatDeployer] deploy, ctxPath=/bbaseamgen, warUrl=.../tmp/deploy/tmp19512bbaseamgen.ear-contents/bbaseamgen-exp.war/
                11:59:03,593 INFO [ContextConfig] WARNING: Security role name NONE used in an <auth-constraint> without being defined in a <security-role>
                11:59:03,875 ERROR [STDERR] java.lang.UnsupportedOperationException
                11:59:03,875 ERROR [STDERR] at com.sun.faces.config.ConfigureListener$InitFacesContext.getViewRoot(ConfigureListener.java:1690)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.util.MessageFactory.getMessage(MessageFactory.java:113)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.util.MessageUtils.getExceptionMessageString(MessageUtils.java:277)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.util.Util.createInstance(Util.java:477)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.util.Util.createInstance(Util.java:436)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:617)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:503)
                11:59:03,875 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:402)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.jsf.integration.config.JBossJSFConfigureListener.contextInitialized(JBossJSFConfigureListener.java:69)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3854)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4359)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5310)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.java:301)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeploy(TomcatDeployer.java:104)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:375)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
                11:59:03,875 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                11:59:03,875 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                11:59:03,875 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                11:59:03,875 ERROR [STDERR] at $Proxy0.start(Unknown Source)
                11:59:03,875 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
                11:59:03,875 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                11:59:03,875 ERROR [STDERR] at $Proxy45.start(Unknown Source)
                11:59:03,875 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                11:59:03,875 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
                11:59:03,875 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
                11:59:03,875 ERROR [STDERR] at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:93)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                11:59:03,875 ERROR [STDERR] at $Proxy46.start(Unknown Source)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                11:59:03,875 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)
                11:59:03,875 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                11:59:03,875 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                11:59:03,875 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                11:59:03,875 ERROR [STDERR] at $Proxy9.deploy(Unknown Source)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274)
                11:59:03,875 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225)
                


                • 5. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                  ge0ffrey

                  I had to comment out rg.jboss.seam.jsf.SeamPhaseListener because a org.jboss.seam.jsf.TransactionalSeamPhaseListener was configured, hope that's not a problem?

                  • 6. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                    ge0ffrey

                    Looks like richfaces is the guilty part

                    the jar contains 3.0.1-SNAPSHOT, while that error is fixed for 3.0.2:
                    http://jira.jboss.com/jira/browse/RF-44

                    The generated code uses a lot of richfaces in the facelets, so dumping it doesn't seem like an option.

                    Is there a new version available somewhere?
                    http://viewcvs.labs.jboss.com/cgi-bin/viewvc.cgi/jboss/jboss-seam/lib/
                    contains the older version and http://www.mvnrepository.com/ doesn't contain it at all.

                    • 7. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen

                      Can you perhaps try building RF from its SVN source here:

                      http://anonsvn.jboss.org/repos/richfaces/

                      Let us know how it goes. Thanks.

                      • 8. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                        ge0ffrey

                        It doesn't build (so I created an issue):
                        http://jira.jboss.com/jira/browse/RF-240

                        PS: Good thing that richfaces builds with svn & m2, else I wouldn't have taken the effort to try to be honest :/

                        • 9. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                          cavani

                          I took RichFaces / Ajax4JSF Snapshot from here (...-bin.zip ~5mb):

                          http://maven.exadel.com/org/richfaces/richfaces/3.0.1-SNAPSHOT/

                          (I think this is from trunk, not tagged yet)

                          Thanks,

                          • 10. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                            ge0ffrey

                            Thanks cavani, but apparently my problem is not caused by RF-44. Has anyone else tested seamgen with jboss 4.2?

                            14:20:37,625 ERROR [[/bbaseamgen]] Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
                            javax.faces.FacesException: java.lang.UnsupportedOperationException
                            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:408)

                            • 11. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                              ge0ffrey

                              Just for reference, here's a bigger chunk of the log:

                              ...
                              14:20:35,625 INFO [SchemaExport] schema export complete
                              14:20:35,718 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
                              14:20:35,734 INFO [UpdateTimestampsCache] starting update timestamps cache at region: bbaseamgen_ear,bbaseamgen.org.hibernate.cache.UpdateTimestampsCache
                              14:20:35,734 INFO [StandardQueryCache] starting query cache at region: bbaseamgen_ear,bbaseamgen.org.hibernate.cache.StandardQueryCache
                              14:20:35,750 INFO [EJB3Deployer] Deployed: file:/C:/develop/appserver/jboss-4.2.0.GA/server/default/tmp/deploy/tmp63128bbaseamgen.ear-contents/bbaseamgen.jar
                              14:20:35,843 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
                              14:20:35,859 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=bbaseamgen.ear,jar=jboss-seam.jar,name=Dispatcher,service=EJB3 with dependencies:
                              14:20:36,062 INFO [EJBContainer] STARTED EJB: org.jboss.seam.core.Dispatcher ejbName: Dispatcher
                              14:20:36,140 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateful.StatefulContainer
                              14:20:36,140 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=bbaseamgen.ear,jar=jboss-seam.jar,name=TransactionListener,service=EJB3 with dependencies:
                              14:20:36,203 INFO [EJBContainer] STARTED EJB: org.jboss.seam.core.TransactionListener ejbName: TransactionListener
                              14:20:36,234 INFO [EJB3Deployer] Deployed: file:/C:/develop/appserver/jboss-4.2.0.GA/server/default/tmp/deploy/tmp63128bbaseamgen.ear-contents/jboss-seam.jar
                              14:20:36,234 INFO [TomcatDeployer] deploy, ctxPath=/bbaseamgen, warUrl=.../tmp/deploy/tmp63128bbaseamgen.ear-contents/bbaseamgen-exp.war/
                              14:20:36,453 INFO [ContextConfig] WARNING: Security role name NONE used in an <auth-constraint> without being defined in a <security-role>
                              14:20:37,578 ERROR [STDERR] java.lang.UnsupportedOperationException
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.config.ConfigureListener$InitFacesContext.getViewRoot(ConfigureListener.java:1690)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.util.MessageFactory.getMessage(MessageFactory.java:113)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.util.MessageUtils.getExceptionMessageString(MessageUtils.java:277)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.util.Util.createInstance(Util.java:477)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.util.Util.createInstance(Util.java:436)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:617)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:503)
                              14:20:37,578 ERROR [STDERR] at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:402)
                              14:20:37,578 ERROR [STDERR] at org.jboss.web.jsf.integration.config.JBossJSFConfigureListener.contextInitialized(JBossJSFConfigureListener.java:69)
                              14:20:37,578 ERROR [STDERR] at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3854)
                              14:20:37,578 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4359)
                              14:20:37,578 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761)
                              14:20:37,578 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741)
                              14:20:37,578 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)
                              14:20:37,578 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                              14:20:37,578 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                              14:20:37,578 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,578 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5310)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.java:301)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeploy(TomcatDeployer.java:104)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:375)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                              14:20:37,593 ERROR [STDERR] at $Proxy0.start(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                              14:20:37,593 ERROR [STDERR] at $Proxy45.start(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
                              14:20:37,593 ERROR [STDERR] at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:93)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                              14:20:37,593 ERROR [STDERR] at $Proxy46.start(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                              14:20:37,593 ERROR [STDERR] at $Proxy9.deploy(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                              14:20:37,593 ERROR [STDERR] at $Proxy0.start(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,593 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,593 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                              14:20:37,593 ERROR [STDERR] at $Proxy4.start(Unknown Source)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                              14:20:37,593 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                              14:20:37,609 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                              14:20:37,609 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                              14:20:37,609 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
                              14:20:37,609 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                              14:20:37,609 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                              14:20:37,609 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                              14:20:37,609 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                              14:20:37,609 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                              14:20:37,609 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
                              14:20:37,609 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
                              14:20:37,609 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
                              14:20:37,609 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
                              14:20:37,609 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:508)
                              14:20:37,609 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
                              14:20:37,625 ERROR [[/bbaseamgen]] Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
                              javax.faces.FacesException: java.lang.UnsupportedOperationException
                               at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:408)
                               at org.jboss.web.jsf.integration.config.JBossJSFConfigureListener.contextInitialized(JBossJSFConfigureListener.java:69)
                               at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3854)
                               at org.apache.catalina.core.StandardContext.start(StandardContext.java:4359)
                               at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:761)
                               at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:741)
                               at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)
                               at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                               at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                               at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.apache.catalina.core.StandardContext.init(StandardContext.java:5310)
                               at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                               at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
                               at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.java:301)
                               at org.jboss.web.tomcat.service.TomcatDeployer.performDeploy(TomcatDeployer.java:104)
                               at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:375)
                               at org.jboss.web.WebModule.startModule(WebModule.java:83)
                               at org.jboss.web.WebModule.startService(WebModule.java:61)
                               at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                               at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                               at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                               at $Proxy0.start(Unknown Source)
                               at org.jboss.system.ServiceController.start(ServiceController.java:417)
                               at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                               at $Proxy45.start(Unknown Source)
                               at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
                               at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                               at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                               at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
                               at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
                               at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:93)
                               at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
                               at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                               at $Proxy46.start(Unknown Source)
                               at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                               at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
                               at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                               at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                               at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                               at $Proxy9.deploy(Unknown Source)
                               at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
                               at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
                               at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
                               at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
                               at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                               at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                               at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                               at $Proxy0.start(Unknown Source)
                               at org.jboss.system.ServiceController.start(ServiceController.java:417)
                               at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                               at $Proxy4.start(Unknown Source)
                               at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                               at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
                               at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
                               at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
                               at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
                               at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                               at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                               at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                               at java.lang.reflect.Method.invoke(Method.java:585)
                               at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                               at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                               at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
                               at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                               at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                               at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                               at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                               at $Proxy5.deploy(Unknown Source)
                               at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
                               at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
                               at org.jboss.Main.boot(Main.java:200)
                               at org.jboss.Main$1.run(Main.java:508)
                               at java.lang.Thread.run(Thread.java:595)
                              Caused by: java.lang.UnsupportedOperationException
                               at com.sun.faces.config.ConfigureListener$InitFacesContext.getViewRoot(ConfigureListener.java:1690)
                               at com.sun.faces.util.MessageFactory.getMessage(MessageFactory.java:113)
                               at com.sun.faces.util.MessageUtils.getExceptionMessageString(MessageUtils.java:277)
                               at com.sun.faces.util.Util.createInstance(Util.java:477)
                               at com.sun.faces.util.Util.createInstance(Util.java:436)
                               at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:617)
                               at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:503)
                               at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:402)
                               ... 137 more
                              14:20:37,625 INFO [ServletContextListener] Welcome to Seam 1.2.1
                              ...
                              


                              • 12. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                                atao

                                atm, I use:
                                - seam 1.2.1 with jboss AS 4.0.5 (application dev)
                                - seam from cvs with jboss AS 4.2 (test of ideas)

                                and I don't mix the two of them...

                                About seam-gen from cvs, there is some issues but nothing fatal:
                                1/ an exception when loading:


                                caused by: java.lang.NoSuchMethodError: org.drools.RuleBase.newWorkingMemory(Z)Lorg/drools/WorkingMemory;
                                at org.jboss.seam.security.RuleBasedIdentity.initSecurityContext(RuleBasedIdentity.java:57)


                                2/ the headers of tables are not generated



                                • 13. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                                  gavin.king

                                  BTW, you could try looking at the code that current seam-gen in CVS produces, it is set up to run on JBoss 4.2 by default.

                                  • 14. Re: JBoss AS 4.2.0, seam 1.2.1 and seamgen
                                    christian.bauer

                                    I ran into this as well today. Using CVS, a seam-gen WAR project deploys without issue on 4.2 GA. However, my /examples/wiki project which worked fine on 4.2 CR no longer deploys, with the USOE shown in this thread.

                                    I can't see a difference in the WEB-INF/lib/.

                                    1 2 Previous Next