Package net.lr.karaf.jms.service.activemq

Examples of net.lr.karaf.jms.service.activemq.ActiveMQJmsServiceFactory


    @Test
    public void testBrowse() throws Exception {
        Connection con = createAndStartConnection();
        JmsService jmsService = new JmsService();
        jmsService.setExtJmsServiceFactory(new ActiveMQJmsServiceFactory());
        jmsService.setConnection(con);
        jmsService.send(TEST_QUEUE_NAME, "testContent", "reply");
        Enumeration<JmsMessage> messages = jmsService.browseQueue(TEST_QUEUE_NAME, null);

        JmsMessage message = messages.nextElement();
View Full Code Here


   
    @Test
    public void testListQueues() throws Exception {
        Connection con = createAndStartConnection();
        JmsService jmsService = new JmsService();
        jmsService.setExtJmsServiceFactory(new ActiveMQJmsServiceFactory());
        jmsService.setConnection(con);
        jmsService.send(TEST_QUEUE_NAME, "testContent", null);
        List<String> listQueues = jmsService.listQueues();
        listQueues.contains(TEST_QUEUE_NAME);
        con.close();
View Full Code Here

TOP

Related Classes of net.lr.karaf.jms.service.activemq.ActiveMQJmsServiceFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.