• 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

Jboss Server

 
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone please explain why do I get the following message on JBoss console when I start the JBoss server. It says.. :
--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@ec708d9a { url=file:/C:/jboss-4.0.5.GA/server/default/deploy/struts-blank-1.3.8/ }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.0.5.GA/server/default/deploy/struts-blank-1.3.8/
altDD: null
lastDeployed: 1181989685984
lastModified: 1180478160570
mbeans:

--- Incompletely deployed packages ---
org.jboss.deployment.DeploymentInfo@ec708d9a { url=file:/C:/jboss-4.0.5.GA/server/default/deploy/struts-blank-1.3.8/ }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.0.5.GA/server/default/deploy/struts-blank-1.3.8/
altDD: null
lastDeployed: 1181989685984
lastModified: 1180478160570
mbeans:


how can I remove these messages?
and the significance of mbeans?


Thanks in advance...
Vijendra
 
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

C:/jboss-4.0.5.GA/server/default/deploy/struts-blank-1.3.8



JBoss can recognize .ear .war .jar (and some more) as deployables. I guess struts-blank-1.3.8 is a web application. Rename it to struts-blank-1.3.8.war and restart the server.
 
Vijendra Runwal
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Jaikiran ..
reply
    Bookmark Topic Watch Topic
  • New Topic