1 Reply Latest reply on Aug 12, 2007 7:22 PM by peterj

    ERROR [URLDeploymentScanner] Incomplete Deployment listing:

    gokul_ifs

      Hi everyone,

      I'm having a problem and your help would be great!

      I am getting the below error when i try to deploy my project in JBoss.

      09:44:02,578 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
      
      --- Packages waiting for a deployer ---
      org.jboss.deployment.DeploymentInfo@a398908e { url=file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/MANIFEST.MF }
       deployer: null
       status: null
       state: INIT_WAITING_DEPLOYER
       watch: file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/MANIFEST.MF
       altDD: null
       lastDeployed: 1186926242575
       lastModified: 1186926242000
       mbeans:
      
      org.jboss.deployment.DeploymentInfo@f18dcbcf { url=file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/application.xml }
       deployer: null
       status: null
       state: INIT_WAITING_DEPLOYER
       watch: file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/application.xml
       altDD: null
       lastDeployed: 1186926242577
       lastModified: 1186926242000
       mbeans:
      
      --- Incompletely deployed packages ---
      org.jboss.deployment.DeploymentInfo@a398908e { url=file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/MANIFEST.MF }
       deployer: null
       status: null
       state: INIT_WAITING_DEPLOYER
       watch: file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/MANIFEST.MF
       altDD: null
       lastDeployed: 1186926242575
       lastModified: 1186926242000
       mbeans:
      
      org.jboss.deployment.DeploymentInfo@f18dcbcf { url=file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/application.xml }
       deployer: null
       status: null
       state: INIT_WAITING_DEPLOYER
       watch: file:/opt/jboss/jboss-4.2.1.GA/server/default/deploy/deploy/META-INF/application.xml
       altDD: null
       lastDeployed: 1186926242577
       lastModified: 1186926242000
       mbeans:
      
      --- MBeans waiting for other MBeans ---
      ObjectName: user:service=QuartzService,name=QuartzService
       State: CONFIGURED
       I Depend On:
       jboss.jca:service=LocalTxCM,name=QuartzDS
      
      --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
      ObjectName: jboss.jca:service=LocalTxCM,name=QuartzDS
       State: NOTYETINSTALLED
       Depends On Me:
       user:service=QuartzService,name=QuartzService
      
      
      09:44:02,634 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8090
      09:44:02,648 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8010
      09:44:02,655 INFO [Server] JBoss (MX MicroKernel) [4.2.1.GA (build: SVNTag=JBoss_4_2_1_GA date=200707131605)] Started in 19s:50ms
      192.168.235.75
      


        • 1. Re:  ERROR [URLDeploymentScanner] Incomplete Deployment list
          peterj

          Looks like you did a exploded deployment of an application named "deploy". Either that, or you created a directory named "deploy" under the existing "deploy" directory and copied the contents of your application there.

          Based on the errors, I would guess that the application is an enterprise application, and thus it requires a ".ear" extension. Either package your application as a file named xxx.ear (where 'xxx' is anything you want) and copy that file to the deploy directory. Or renamed the deploy directory you created to 'xxx.ear' (i.e., you will end up with /opt/jboss/jboss-4.2.1.GA/server/default/deploy/xxx.ear).