• 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

JMS DestinationManager Not Yet Installed

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using JBoss version 4.0.1 and trying to use JMS queues.

I have my queues defined in a file under the deploy directory of my configuration called myqueue-service.xml, with entries like the following:

<mbean code="org.jboss.mq.server.jmx.Queue"
name="jboss.mq.destination:service=Queue,name=testQueue">
<depends optional-attribute-name="DestinationManager">
jboss.mq:service=DestinationManager</depends>
</mbean>

I copied my configuration from the "all" configuration so that I would have everything including (hopefully) JMS.

When I start my JBoss server, it lists all my queues and then this error message:

MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
ObjectName: jboss.mq:service=DestinationManager
state: NOTYETINSTALLED

Attempts to send a message to the queue fail. Also, I noticed that the Getting Started guide says to use the jmx-console and click on the DestinationManager under jms.mq, but I don't have a link for DestinationManager. How does the DestinationManager get installed/configured?

Any suggestions would be most appreciated,
Thanks!
 
Ranch Hand
Posts: 85
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had no problems following the examples in the start guide using version 4.0.2. There were some changes between 4.0.1 and 4.0.2.

And the following excerpt is from the guide's About this book section just after table of contents.
------------------------------------
At the time of writing, the latest release is version 4.0.2. You should use this version or later with the examples.
------------------------------------

FYI, unless you don't need clustering feature, avoid to use 'all' server type. 'default' mode also includes the JMS feature.

Good luck.

[ October 10, 2005: Message edited by: Heonkoo Lee ]
[ October 10, 2005: Message edited by: Heonkoo Lee ]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic