mdb « JBoss « Java Enterprise Q&A





1. Is there any server config file to invoke MDB?    stackoverflow.com

I am having ejb-jar.xml and jboss.xml files in my application of JMS with MDB. I have configured the queue destination in destination-service.xml. But my MDB is not invoking. Are there any server files ...

2. MDB listening a Topic in JBoss 5.1    stackoverflow.com

I have a topic configured correctly like this, in jboss 5.1:

 <mbean code="org.jboss.jms.server.destination.TopicService"
  name="jboss.messaging.destination:service=Topic,name=GreetingsTopic"
  xmbean-dd="xmdesc/Topic-xmbean.xml">
  <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer
  </depends>
  <depends>jboss.messaging:service=PostOffice</depends>
 </mbean>
I can see the topic being started ...

3. NoInitialContextException when deploying MDB on custom resource adapter    stackoverflow.com

I developed a resource adapter that I would like to use within my application ear, deployed in JBoss 5.1. After playing around with annotations and xml files, I came up with ...

4. JBoss 5.1.0. GA shutdown    stackoverflow.com

On a 5.1.0GA. server,at shutdown : Normally, when I call shutdown on the jboss, I would expect that the following happens:

  1. all MDBs do stop processing any further JMS
  2. all (Quartz) jobs are closing ...