vote up 0 vote down star

I tried to implement MessageListener, but it dosen't work, but when I use MessageListner, it doesn't work. So what should I do that MessageListener starts working, I'm using jboss 4.02.

recv.receive(); // This works

recv.setMessageListener(new ExListener()); // This doesn't work

    public static class ExListener 
    implements MessageListener
    {
        public void onMessage(Message msg)
        {
            TextMessage tm = (TextMessage) msg;
            try {
                System.out.println("onMessage, recv text="+tm.getText());
            } catch(Throwable t) {
                t.printStackTrace();
            }
        }
    }
flag

Please provide information on what "it doesn't work" means. – SingleShot Oct 16 at 5:51
With first example I get messages and I can sysout them, but in second example I get no messages, because there are no prints to sysout – newbie Oct 16 at 5:53

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.