Hi Friends.. :)
This is the first my question in this forum.. :)
please help me about how to configuring JMS ConnectionFactory on JBossAS5.. i have created a simple MDB application :
@MessageDriven(name = "MessageMDBSample", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/MyQueue"),
@ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge") })
public class DummyMDBeanBean implements MessageListener {
public void onMessage(Message message) {
System.out.println("Hello");
}
}
How to configure Queue and ConnectionFactory, at this instance queue/MyQueue on JBossAS5?..
Thanks in advance.. :)