Messaging APIs | How messaging fits into your code | IBM MQ

preview_player
Показать описание

Want to understand how messaging fits into your applications? In this video, Max from the IBM MQ team explains how messaging software works with your code and shows you an example in Java using JMS, which is a Java EE standard API for messaging.

#ibmmq
#api
#messaging
#java
#softwareCards

Issue 5996: KJA
Рекомендации по теме
Комментарии
Автор

Good video, clear and practical. Thanks. 👍🏼

miguelibanez
Автор

Hello Max, thank you for you videos and your effort!

I have make the set up with the docker and the simple example works fine.
I want to go a bit further to use JNDI. At the past i have used Active MQ
and the process to use the JNDI is straight forward.

I am not sure how to use the JNDI with the IBM MQ and i am struggling with the documentation.
With the Active MQ the queue or the topic you use if not exists created on the fly, can we do the same
with the IBM MQ also.

Thank's in advance.

manolisp
Автор

Hello Max nice tutorial Thanks!!
Can you please help me - I want to read messages from queue so I need to use createconsumer method so how should I read messages asynchronously?

Ganeshtexnovate
Автор

Hi, I want to use this jms but in my case I need ssl to connect to queue. So what extra lines I need to add it to above code?

prasanthkotagiri
Автор

Hi, I need to add truststore certs to the above code. How to add?

prasanthkotagiri
Автор

I'm getting an exception on the JMSDestination once I put the message..
What might be the reason.?

vishalgoud
Автор

Hello Max. Thanks for your video. Could you please explain how can I get some specific messages from the queue? For example, I have 10 messages in the queue and I want to get the fifth message. I use Java (maybe you have a code example on GitHub? ). Thanks in advance.

Ragazzo
Автор

Thx for the answer Max. This is helpful. But I have another question :) I am not able to send messages to the topic, I used your instructions and run the docker image. I am able to send messages to the queue DEV.QUEUE.1 + DEV.QUEUE.1 )), but I am not able to send messages to the topic DEV.BASE.TOPIC (I use + DEV.BASE.TOPIC);)

Ragazzo