• 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

JProfiler set up for Jboss

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

After configuring Jprofiler in Jboss. When i started server i got this message in my eclipse console.

--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@4b81b485 { url=file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war
altDD: null
lastDeployed: 1280137055578
lastModified: 1280137055562
mbeans:

--- Incompletely deployed packages ---
org.jboss.deployment.DeploymentInfo@4b81b485 { url=file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war
altDD: null
lastDeployed: 1280137055578
lastModified: 1280137055562
mbeans:

Please help me..
 
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

watch: file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war



You are deploying jboss-profiler and not JProfiler. They are two different products.


org.jboss.deployment.DeploymentInfo@4b81b485 { url=file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/E:/jboss-4.2.3.GA/server/default/deploy/jboss-profiler.war
altDD: null
lastDeployed: 1280137055578
lastModified: 1280137055562
mbeans:



Did you change anything in JBoss AS? .war are by default picked up by the war deployer. However, this error message suggests that it's not being recognized by that deployer? Do you have a WEB-INF/web.xml in that .war?


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

Thanks for the reply.actualy i found the issue cause.For devlopment purpose i have separated tomcat files from Jboss. When i put those files again it got worked.

reply
    Bookmark Topic Watch Topic
  • New Topic