We now have the WebLogic topic messages being sent to a secured queue (one of the default
queues, queue/A) on our JBoss server. However, we haven't been able to configure our
EJB3 MDBs to listen to the local queue. It should be an easy thing but has turned out to
be anything but. We are getting a "not bound" exception when JBoss tries to
deploy the MDB to listen to queue/A.
Any tips on what the solution might be? Here are the activation configs we are using in
our MDB:
@ActivationConfigProperty(propertyName="destinationType",
propertyValue="javax.jms.Queue"),
@ActivationConfigProperty(propertyName="destination",
propertyValue="queue/A"),
@ActivationConfigProperty(propertyName="userName",
propertyValue="uname"),
@ActivationConfigProperty(propertyName="password",
propertyValue="psswd"),
@ActivationConfigProperty(propertyName="providerUrl",
propertyValue="jnp://localhost:1299"),
@ActivationConfigProperty(propertyName="JmsProviderAdapterJNDI",
propertyValue="DefaultJMSProvider")
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179440#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...