/* * JBoss, Home of Professional Open Source * Copyright 2005-2008, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.messaging.example; import org.jboss.messaging.core.client.*; import org.jboss.messaging.core.client.impl.ClientSessionFactoryImpl; import org.jboss.messaging.core.config.TransportConfiguration; import org.jboss.messaging.core.exception.MessagingException; import org.jboss.messaging.core.logging.Logger; import org.jboss.messaging.core.message.Message; import org.jboss.messaging.jms.client.JBossTextMessage; import org.jboss.messaging.util.SimpleString; /** * @author <a href="mailto:andy.taylor@jboss.org">Andy Taylor</a> */ public class WildCardClient { final static Logger log = Logger.getLogger(WildCardClient.class); public static void main(final String[] args) { ClientSession clientSession = null; ClientConsumer clientConsumer = null; SimpleString wildCardQ = new SimpleString("queuejms.#"); try { ClientSessionFactory sessionFactory = new ClientSessionFactoryImpl(new TransportConfiguration("org.jboss.messaging.core.remoting.impl.netty.NettyConnectorFactory")); clientSession = sessionFactory.createSession(false, true, true, false); SimpleString queue = new SimpleString("queuejms.testQueue"); SimpleString queue2 = new SimpleString("queuejms.MyQueue"); ClientProducer clientProducer = clientSession.createProducer(queue); ClientProducer clientProducer2 = clientSession.createProducer(queue2); ClientMessage message = clientSession.createClientMessage(JBossTextMessage.TYPE, false, 0, System.currentTimeMillis(), (byte) 1); message.getBody().putString("This is a message from queue " + queue); ClientMessage message2 = clientSession.createClientMessage(JBossTextMessage.TYPE, false, 0, System.currentTimeMillis(), (byte) 1); message2.getBody().putString("This is a message from queue " + queue2); clientSession.createQueue(wildCardQ, wildCardQ, null, false, true);clientConsumer = clientSession.createConsumer(wildCardQ); clientProducer.send(message); log.info("message sent to " + queue); clientProducer2.send(message2); log.info("message sent to " + queue2); clientSession.start(); ClientMessage msg = clientConsumer.receive(5000); msg.acknowledge(); log.info("message received: " + msg.getBody().getString()); ClientMessage msg2 = clientConsumer.receive(5000); msg2.acknowledge(); log.info("message received: " + msg2.getBody().getString()); } catch(Exception e) { e.printStackTrace(); } finally { if(clientConsumer != null) { try { clientConsumer.close(); } catch (MessagingException e) { } } if (clientSession != null) { try { clientSession.deleteQueue(wildCardQ); clientSession.close(); } catch (MessagingException ignore) { } } } } }