Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

Sorry to say but there is no way to do it. At least using the WMQ JMS client jar. You can calculate a q depth indirectly by counting-while-browsing, and that's about it.

For input/output count you are gonna need MQ api (MQI/PCF whatever suits you).

edit: added url: MQ Classes for Java

share|improve this answer
I just found out the same thing so sadly this answer is acceptable :) – Spyro Mar 20 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.