Note that there are some explanatory texts on larger screens.

plurals
  1. POProblem deploying Seam application in JBoss 6
    primarykey
    data
    text
    <p>I'm trying to deploy a simple "hello world" Seam application on JBoss 6, and I'm getting these errors on the log:</p> <pre><code>Deployment "jboss.ejb3:application=helloworld,component=TimerServiceDispatcher,module=jboss-seam,service=EjbEncFactory" is in error due to the following reason(s): Described Deployment "org.jboss.ejb.bean.instantiator/helloworld/jboss-seam/TimerServiceDispatcher" is in error due to the following reason(s): ** NOT FOUND Depends on 'org.jboss.ejb.bean.instantiator/helloworld/jboss-seam/TimerServiceDispatcher' ** Deployment "jboss.naming:application=helloworld,component=TimerServiceDispatcher,module=jboss-seam" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.naming:application=helloworld,component=TimerServiceDispatcher,module=jboss-seam' ** Deployment "org.jboss.ejb.bean.instantiator/helloworld/jboss-seam/EjbSynchronizations" is in error due to the following reason(s): ** NOT FOUND Depends on 'org.jboss.ejb.bean.instantiator/helloworld/jboss-seam/EjbSynchronizations' ** Deployment "jboss.ejb3:application=helloworld,component=EjbSynchronizations,module=jboss-seam,service=EjbEncFactory" is in error due to the following reason(s): Described Deployment "jboss.naming:application=helloworld,component=EjbSynchronizations,module=jboss-seam" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.naming:application=helloworld,component=EjbSynchronizations,module=jboss-seam' ** </code></pre> <p>Evidently the deployment process can't find <code>TimerServiceDispatcher</code> and <code>EjbSynchronizations</code> , but I registered them in <code>web.xml</code> :</p> <pre><code> &lt;ejb-local-ref&gt; &lt;ejb-ref-name&gt;helloworld/EjbSynchronizations/local&lt;/ejb-ref-name&gt; &lt;ejb-ref-type&gt;Session&lt;/ejb-ref-type&gt; &lt;local&gt;org.jboss.seam.transaction.LocalEjbSynchronizations&lt;/local&gt; &lt;ejb-link&gt;EjbSynchronizations&lt;/ejb-link&gt; &lt;/ejb-local-ref&gt; &lt;ejb-local-ref&gt; &lt;ejb-ref-name&gt;helloworld/TimerServiceDispatcher/local&lt;/ejb-ref-name&gt; &lt;ejb-ref-type&gt;Session&lt;/ejb-ref-type&gt; &lt;local&gt;org.jboss.seam.async.LocalTimerServiceDispatcher&lt;/local&gt; &lt;ejb-link&gt;TimerServiceDispatcher&lt;/ejb-link&gt; &lt;/ejb-local-ref&gt; </code></pre> <p>What am I doing wrong, or what am I missing? and notice that the deployer is looking for the components in <code>/helloworld/jboss-seam/TimerServiceDispatcher</code> and not in <code>/helloworld/TimerServiceDispatcher</code> (same thing with <code>EjbSynchronizations</code>)</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload