WAS 集成 Websphere MQ 通过JNDI访问

WAS 7.0 / WebSphere MQ 7.0

 

Configure the Queue Connection Factory:

 

 

1.       click resource

2.       click JMS

3.       click websphere queue connection factory

 

 

 

1.       click New

 

 

1.       checked the websphere MQ messaging provider

2.       click confirm

 

 

1.       input the name

2.       input the JNDI name, defined by yourself

3.       click Next

 

 

1.       checked as the figure shows

2.       click Next

 

 

1.       input the QUEUE MANAGER name

2.       click the Nest button

 

 

1.       select the Client

2.       input the host name which MQ installed

3.       input the MQ port

4.       input the server connection channel that defined at the MQ side

5.       click the Next button

 

 

1.       you can click test connection to judge your configuration is right or not

2.       click Next button

3.       you can save your configuration

 

 

 

 

Configure the Queue:

 

1.       click resource

2.       click JMS

3.       click Queue

 

 

1.       click New

 

 

1.       click websphere MQ messaging provider

2.       click confirm

 

 

1.       input the name

2.       input the JNDI name that defined by yourself

3.       input the QUEUE name

4.       input the QUEUE MANAGER name

5.       then click the apply to save your configuration

 

 

1.       click as the figure shows

 

 

1.       input the host name

2.       input the port

3.       input the server connection channel

4.       you may input the id and password if needed

5.       click the apply button, and click save to save your configuration

 

 

Now you have done the configuration , next you should restart the server….

 

Show some java code to test the configuration:

1.      receive message from Queue:

public static void receive() {

        try {

            Context ctx = new InitialContext();

            QueueConnectionFactory qcf = (QueueConnectionFactory)ctx.lookup("TESTSOA_JNDI");

            QueueConnection connection = qcf.createQueueConnection();

            Queue q = (Queue)ctx.lookup("TESTQ_JNDI");

            QueueSession s = connection.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);

            connection.start();

            QueueReceiver receiver = s.createReceiver(q);

           

            Message mc = receiver.receive();

            if(mc != null) {

                String type = mc.getJMSType();

                if(mc instanceof TextMessage) {

                TextMessage tm = (TextMessage)mc;

                System.out.println(tm.getText());

            }

               

            }

            s.close();

            connection.close();

        }catch(Exception e) {

           

        }

       

    }

 

 

 

 

 

 

 

2.    send message to Queue:

public static void send() {

        try {

            Context ctx = new InitialContext();

            QueueConnectionFactory qcf = (QueueConnectionFactory)ctx.lookup("TESTSOA_JNDI");

            QueueConnection connection = qcf.createQueueConnection();

           

            Queue q = (Queue)ctx.lookup("TESTQ_JNDI");

           

            QueueSession s = connection.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);

            connection.start();

            QueueSender sender = s.createSender (q);

            TextMessage tm = s.createTextMessage ( "test websphere mq have Chinese characters");

            sender.send (tm, DeliveryMode.PERSISTENT, 4, 0);

            s.close();

            connection.close();

           

        }catch(Exception e) {

            e.printStackTrace();

        }

       

    }

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值