JBoss Community

Re: QueueBrowser - JBossQueueBrowser$BrowserEnumeration cannot be cast to javax.jms.ObjectMessage

created by everson . in JBoss Messaging - View the full discussion

I fixed as below

 

ObjectMessage objectMessage = (ObjectMessage) messages.nextElement();

 

 

QueueBrowser queueBrowser = session.createBrowser(queue);

            Enumeration<ObjectMessage> messages = queueBrowser.getEnumeration();

            while (messages.hasMoreElements()) {

                ObjectMessage objectMessage = (ObjectMessage) messages;// error here

                Jms jms = new Jms();

                People p = jms.new People();

                p = (People) objectMessage.getObject();

                System.err.println(p.getName());

            }

Reply to this message by going to Community

Start a new discussion in JBoss Messaging at Community