I've created a simple MDB application and deployed it to Glassfish v 3.1 with embedded MQ broker. Destination Resource with name "jms/Queue" was created as well. Please see part of the code below:
@MessageDriven(
mappedName = "jms/Queue",
activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
}
)
public class MessageBean implements MessageListener {
public void onMessage(Message message) {
........
This works fine, but how to configure this application to work with remote MQ broker instance(located on another host)?