• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Incomplete deployment

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,


When am trying to deploy one ear file. am getting incomplete deployment error

Its failing to deploy PCML files.Please help:(

Our database is as400.

Regards,
Jeethu
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please post the full stack trace for the error. Make sure you post only the first exception stack trace from the console log. Do not post the "Deployments in Error" report as that it usually useless in identifying the root cause of problems. Also post the version of JBoss AS, OS and JVM.

Alternately, you could attach the server.log and boot.log files.
 
Jeethu Mary
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

ERROR deployment.scanner.URLDeploymentScanner;URLDeploymentScanner.java:scan():660) - Incomplete Deployment listing:

--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@5774fdff { url=file:/C:/jboss-4.0.4.GA_new/server/default/deploy/OpenCloseBooking.pcml }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.0.4.GA_new/server/default/deploy/OpenCloseBooking.pcml
altDD: null
lastDeployed: 1300886092211
lastModified: 1300886092211
mbeans:


I have attached the log file for your refernce.

Jboss 4.0.4 and jdk- 1.5 is wat am using..
I had no problem before with the same set up.. Now wonder what went wrong
It has error only with pcml files deployment

Regards,
Jeethu
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What's a .pcml file? It's not one of the standard file types recognized by the JBoss AS deployers, hence that error.
 
Jeethu Mary
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

PCMl is program call mark up Language. Its basically AS400 file and my application refers to AS400 Database.

These files were there even before, i never got any prob with deployment then
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you sure they were in the "deploy" folder earlier? Unless you have some custom deployer, JBoss AS will not recognize such files from deploy folder.

 
Jeethu Mary
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes.. Am very much sure that they were in deploy folder.. And even now its the same
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Like I said earlier:

Unless you have some custom deployer, JBoss AS will not recognize such files from deploy folder.

 
Jeethu Mary
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually 2days back i used to get 2 errors:

Could not create deployment: file:/C:/jboss-4.0.4.GA_new/server/default/tmp/deploy/tmp50284itds_main.ear-contents/itds_mainEjb.jar

and also

ERROR deployment.scanner.URLDeploymentScanner;URLDeploymentScanner.java:scan():660) - Incomplete Deployment listing:

--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@5774fdff { url=file:/C:/jboss-4.0.4.GA_new/server/default/deploy/OpenCloseBooking.pcml }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.0.4.GA_new/server/default/deploy/OpenCloseBooking.pcml
altDD: null
lastDeployed: 1300960784800
lastModified: 1300960784800
mbeans:

Then i read in some forums and Updated "strictverifier" to "false" in ejb-deployer.xml. and form then the 1st error vanished.

Can i know if you are aware of any solution for 2nd one
 
Peter Johnson
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Can i know if you are aware of any solution for 2nd one


Read Jaikiran's last post again - he already answered this.
 
reply
    Bookmark Topic Watch Topic
  • New Topic