3 Replies Latest reply on Jan 21, 2004 3:55 AM by milowe

    Error Incomplete Deployment listing

    chamesh

      I am getting following error while delpoying stateless session hello EJB on on jboss-3.2.3
      20:26:56,234 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean ope
      ration 'checkIncompleteDeployments()'
      Cause: Incomplete Deployment listing:
      Packages waiting for a deployer:

      Incompletely deployed packages:
      [org.jboss.deployment.DeploymentInfo@80d57102 { url=file:/C:/Jboss/jboss-3.2.3/s
      erver/default/deploy/hello.jar }
      deployer: org.jboss.ejb.EJBDeployer@164b09c
      status: Deployment FAILED reason: Verification of Enterprise Beans failed, see
      above for error messages.
      state: FAILED
      watch: file:/C:/Jboss/jboss-3.2.3/server/default/deploy/hello.jar
      lastDeployed: 1074562014046
      lastModified: 1074562013984
      mbeans:
      ]MBeans waiting for classes:

      MBeans waiting for other MBeans:



      My ejb-jar.xml is
      <?xml version="1.0" encoding="UTF-8" ?>
      <!DOCTYPE ejb-jar (View Source for full doctype...)>
      - <ejb-jar>
      JBoss Hello World
      <display-name>Hello World EJB</display-name>
      - <enterprise-beans>
      -
      <ejb-name>Hello</ejb-name>
      hello.HelloHome
      hello.Hello
      <ejb-class>hello.HelloEJB</ejb-class>
      <session-type>Stateless</session-type>
      <transaction-type>Bean</transaction-type>

      </enterprise-beans>
      </ejb-jar>

      and jboss.xml is
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 3.0//EN" "http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd">

      <enterprise-beans>

      <ejb-name>Hello</ejb-name>
      <jndi-name>Hello</jndi-name>

      </enterprise-beans>



      Any thing I am missing(messing) here?