1 2 Previous Next 18 Replies Latest reply on Feb 15, 2006 4:47 PM by gavin.king

    Seam generated Code compile issue

    liebner

      Hi folks,

      I have some problems with the generated code from the hibernate seam reverse engineering tool.

      1)
      [javac] C:\Projekte\Java\SD\src\ContactAddress.java:8: cannot find symbol
      [javac] symbol : class GeneratorType
      [javac] location: package javax.persistence
      [javac] import javax.persistence.GeneratorType;
      [javac] ^

      All libraries from the sticky are present in the lib folder of the project. Jars contain the methods, eclipse compiles these classes (bin folder), what am I doing wrong?

      2)
      [javac] C:\Projekte\Java\SD\src\ContactAccountEditorBean.java:5: cannot find symbol
      [javac] symbol : class Interceptor
      [javac] location: package javax.ejb
      [javac] import javax.ejb.Interceptor;
      [javac] ^
      Same as 1)...

      3)
      [javac] C:\Projekte\Java\SD\src\ContactAccountEditorBean.java:90: cannot find symbol
      [javac] symbol : method switchableOutcome(java.lang.String,java.lang.String)
      [javac] location: class org.jboss.seam.core.Conversation
      [javac] return conversation.switchableOutcome( "editContactAccount", getDescription() );
      [javac] ^

      I cannot find the method switchableOutcome either. And I do have the most recent Seam (Nightly Build 17th) plus the corresponding hibernate eclipse files.

      Any ideas?

      Greetings,
      Stefan

        • 1. Re: Seam generated Code compile issue
          gavin.king

          This stuff is all obsolete stuff that was working for 4.0.3SP1, but not for the new upcoming release. I've already fixed all those things in Hibernate Tools CVS, so just rebuild hibernate-tools.jar.

          • 2. Re: Seam generated Code compile issue
            liebner

            Hi Gavin,

            could you post me a cvs line here like in the other postings so that I get the right sources and can rebuild it?

            Thanks,
            Stefan

            • 3. Re: Seam generated Code compile issue
              gavin.king

              http://www.hibernate.org/6.html#A3

              cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/hibernate checkout -P HibernateExt
              cd HibernateExt/tools
              ant jar

              Then copy hibernate-tools.jar over the one in your eclipse/plugins/org.hibernate.eclipse_3.1.0.somethingOrOther/lib/tools directory.

              • 4. Re: Seam generated Code compile issue
                matthew.edwards

                I'm having difficulty getting a response from the server that hibernate tools is on. How can I get a build of hibernate-tools? Is there a nightly build?

                • 5. Re: Seam generated Code compile issue
                  matthew.edwards

                  Actually, the real problem I am having is with the generated code requesting the following:

                  conversation.switchableOutcome

                  the switchableOutcome. Is that old code?

                  • 6. Re: Seam generated Code compile issue
                    gavin.king

                    If the generated code has calls to switchableOutcome() in it, you are *not* using the latest from CVS. I removed call calls to switchableOutcome() from the templates days ago.

                    • 7. Re: Seam generated Code compile issue
                      maxandersen

                      my bad - i could not complete any commit against the .jar files in the plugins last week (the connection kept timing out).

                      I'll fix this as soon as i get to a stable connection - until then I recommend using the ant based tools from cvs. They are uptodate.

                      • 8. Re: Seam generated Code compile issue
                        gavin.king

                        It should be enough to simply replace the hibernate-tools.jar in your eclipse plugins dir with a fresh build from HibernateExt CVS.

                        • 9. Re: Seam generated Code compile issue
                          matthew.edwards

                          I can't get a connection to the CVS server. I get an error saying there was no response from the server. Uh, you wouldn't have a copy of hibernate-tools.jar on you that I could borrow would you? I'll keep trying to figure something out.

                          • 10. Re: Seam generated Code compile issue
                            coryvirok

                            I have been trying for hours to get a reverse-engineered CRUD application working with the latest FULL Jboss/Eclipse bundle, (including eclipse itself) but have been running into a bunch of problems.

                            1. After a fresh install of JBoss' eclipse bundle, I tried to reverse engineer a simple DB. The code created includes calls to

                            conversation.switchableOutcome(...)
                            which I've seen in a previous post to be caused by an out of date Hibernate Tools package. Why wasn't the latest tools package included in the bundle?

                            2. The generated code also contained imports of:
                            import javax.ejb.Interceptor;

                            Which really should be
                            import javax.ejb.Interceptors;


                            3. I won't even try and get into the errors I came across when I tried a more complex schema that had composite keys, unique indexes, multiple foreign keys etc...

                            So, long question short: How do I create a simple reverse engineered CRUD app using Seam and Eclipse?

                            I've tried the latest JBoss eclipse bundle but to no avail.

                            Thanks a lot and keep up the good work with free software!
                            - Cory

                            • 11. Re: Seam generated Code compile issue
                              gavin.king

                              I'm not exactly sure what is the full Eclipse bundle.

                              I recommend you use the nightly build of JBoss IDE:

                              http://download.jboss.com/jbosside/builds/nightly/buildResults.html

                              • 12. Re: Seam generated Code compile issue
                                coryvirok

                                Thanks for your quick response Gavin.

                                I downloaded the full JBoss eclipse bundle nightly build, (http://download.jboss.org/jbosside/builds/nightly/200602100939-nightly/bundle/JBossIDE-200602100939-nightly-Bundle-win32.zip) and the CRUD app was created without error.

                                The next thing I ran into was a problem with the version of ejb3-persistence.jar I was using. Following the instructions here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=74318 I replaced the hibernate-annotations.jar, hibernate3.jar and hibernate-entitymanager.jar in the JBoss server/* directory with the latest from the HibernateTools-3.1.0.beta3.jar archive. I also added in ejb3-persistence.jar, hibernate-annotations.jar, jboss-annotations-ejb3.jar, jboss-ejb3x.jar, jboss-seam.jar and myfaces-api.jar to my generated project's /lib directory.

                                When I run JBoss and deploy the generated app, I get one of two errors. The first:

                                Caused by: java.lang.NoClassDefFoundError: javax/persistence/EmbeddableSuperclass


                                or another:
                                Caused by: java.lang.NoClassDefFoundError: javax/persistence/spi/PersistenceUnitTransactionType


                                depending on what version of ejb3-persistence.jar I have in my JBoss server/* directory. The problem is, the version that comes with JBoss 4.0.4RC1 does not have the EmbeddableSuperclass class and the version that comes with the latest HibernateTools jar does not have PersistenceUnitTransactionType...

                                I tried using using the version of ejb3-persistence.jar that comes with JBoss 4.0.4RC1 in the JBoss server/* directory and adding in the one that comes with HibernateTools in my application's /lib directory but that didn't work either.

                                Any suggestions?

                                Thanks a lot,
                                - Cory

                                • 13. Re: Seam generated Code compile issue
                                  maxandersen

                                  beta4 does not contain any templates with switchableoutcome in them.

                                  Are you sure you are using the latest released version ?

                                  • 14. Re: Seam generated Code compile issue
                                    coryvirok

                                    Ya, once I downloaded and generated using the latest nightly build of JBoss IDE, I did not get any switchableOutcome() calls. The generated code compiles and looks good. The issue I'm having is when I deploy the app. JBoss 4.0.4RC1 throws the two errors I mentioned in my last post depending on which version of ejb3-persistence.jar I have in the JBoss server/default/lib and server/default/deploy/ejb3.deployer directories.

                                    Here is the stack trace for some more info:

                                    18:48:11,875 INFO [StartupServletContextListener] ServletContext 'C:\Program Files\jboss-4.0.4RC1\server\default\.\tmp\deploy\tmp2524jboss-seam-issues.ear-contents\jboss-seam-issues-exp.war\' initialized.
                                    18:48:13,531 FATAL [PersistenceXmlLoader] entityManager JTA
                                    18:48:13,671 WARN [ServiceController] Problem starting service persistence.units:ear=seamapp.ear.ear,jar=seamapp.ejb3.jar,unitName=entityManager
                                    java.lang.reflect.InvocationTargetException
                                     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.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:97)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                     at sun.reflect.GeneratedMethodAccessor23.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
                                     at $Proxy0.start(Unknown Source)
                                     at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                     at sun.reflect.GeneratedMethodAccessor5.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy126.start(Unknown Source)
                                     at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:76)
                                     at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:599)
                                     at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:452)
                                     at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:139)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                     at sun.reflect.GeneratedMethodAccessor23.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
                                     at $Proxy0.start(Unknown Source)
                                     at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                     at sun.reflect.GeneratedMethodAccessor5.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy37.start(Unknown Source)
                                     at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:365)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:997)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                                     at sun.reflect.GeneratedMethodAccessor6.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy6.deploy(Unknown Source)
                                     at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:334)
                                     at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:522)
                                     at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:207)
                                     at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:280)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                     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.server.Invocation.invoke(Invocation.java:86)
                                     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
                                     at $Proxy0.start(Unknown Source)
                                     at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                     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.server.Invocation.invoke(Invocation.java:86)
                                     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy4.start(Unknown Source)
                                     at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
                                     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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy5.deploy(Unknown Source)
                                     at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:477)
                                     at org.jboss.system.server.ServerImpl.start(ServerImpl.java:357)
                                     at org.jboss.Main.boot(Main.java:200)
                                     at org.jboss.Main$1.run(Main.java:464)
                                     at java.lang.Thread.run(Thread.java:595)
                                    Caused by: java.lang.NoClassDefFoundError: javax/persistence/EmbeddableSuperclass
                                     at org.hibernate.cfg.AnnotationConfiguration.addEmbeddedSuperclasses(AnnotationConfiguration.java:311)
                                     at org.hibernate.cfg.AnnotationConfiguration.addImplicitEmbeddedSuperClasses(AnnotationConfiguration.java:301)
                                     at org.hibernate.cfg.AnnotationConfiguration.processArtifactsOfType(AnnotationConfiguration.java:259)
                                     at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:199)
                                     at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:996)
                                     at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:722)
                                     at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:161)
                                     at org.hibernate.ejb.Ejb3Configuration.createEntityManagerFactory(Ejb3Configuration.java:567)
                                     at org.hibernate.ejb.Ejb3Configuration.createContainerEntityManagerFactory(Ejb3Configuration.java:245)
                                     at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:108)
                                     at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:260)
                                     ... 126 more
                                    18:48:17,468 ERROR [[/seamapp]] Exception sending context initialized event to listener instance of class org.jboss.seam.servlet.SeamListener
                                    java.lang.IllegalStateException: Missing value() for @DataModelSelection with multiple @DataModels
                                     at org.jboss.seam.Component.initMembers(Component.java:421)
                                     at org.jboss.seam.Component.<init>(Component.java:176)
                                     at org.jboss.seam.Component.<init>(Component.java:142)
                                     at org.jboss.seam.Component.<init>(Component.java:137)
                                     at org.jboss.seam.Component.<init>(Component.java:132)
                                     at org.jboss.seam.init.Initialization.addComponent(Initialization.java:244)
                                     at org.jboss.seam.init.Initialization.addComponents(Initialization.java:225)
                                     at org.jboss.seam.init.Initialization.init(Initialization.java:93)
                                     at org.jboss.seam.servlet.SeamListener.contextInitialized(SeamListener.java:30)
                                     at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3692)
                                     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4127)
                                     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
                                     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
                                     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
                                     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.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
                                     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:5031)
                                     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.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
                                     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.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
                                     at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
                                     at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
                                     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.GeneratedMethodAccessor23.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
                                     at $Proxy0.start(Unknown Source)
                                     at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                     at sun.reflect.GeneratedMethodAccessor5.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy47.start(Unknown Source)
                                     at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:469)
                                     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.mx.server.Invocation.invoke(Invocation.java:88)
                                     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy48.start(Unknown Source)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:997)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                                     at sun.reflect.GeneratedMethodAccessor6.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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy6.deploy(Unknown Source)
                                     at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:334)
                                     at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:522)
                                     at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:207)
                                     at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:280)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                                     at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
                                     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.server.Invocation.invoke(Invocation.java:86)
                                     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
                                     at $Proxy0.start(Unknown Source)
                                     at org.jboss.system.ServiceController.start(ServiceController.java:417)
                                     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.server.Invocation.invoke(Invocation.java:86)
                                     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy4.start(Unknown Source)
                                     at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                                     at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                                     at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
                                     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:260)
                                     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                                     at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
                                     at $Proxy5.deploy(Unknown Source)
                                     at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:477)
                                     at org.jboss.system.server.ServerImpl.start(ServerImpl.java:357)
                                     at org.jboss.Main.boot(Main.java:200)
                                     at org.jboss.Main$1.run(Main.java:464)
                                     at java.lang.Thread.run(Thread.java:595)


                                    Thanks,
                                    - Cory

                                    1 2 Previous Next