I have an SLSB with connection factory and queue injected:
@Stateless
public class MQTestBean {
@Resource(mappedName = "jms/MQQCF")
private ConnectionFactory connectionFactory;
@Resource(mappedName = "jms/testQueue")
private Queue testQueue;
}
I would like to be able to inquire the queue for the following attributes:
- current depth
- open input count
- open output count
Please keep in mind, that the channel's user I am using has only access to DSP, GET, PUT, INQ.