-1

I'm trying to find informations which explain how use IBM MQ with Katalon.

However, I didn't found any informations about that...

Do you know if it is possible? With a plugin? A custom Java/Groovy code?

I hope that someone could give an answer to this question.

JoshMc
  • 10,239
  • 2
  • 19
  • 38
Royce
  • 1,557
  • 5
  • 19
  • 44
  • What do you mean exactly by using MQ with Kataon ? Having test steps that produces / consumes to / from a MQ ? – Arnaud Claudel Jul 26 '19 at 10:16
  • Exactly. I try to know if it is possible to put message in a queue with Katalon. Like JMeter can do it for example. – Royce Jul 26 '19 at 10:19

2 Answers2

2

You can add external librairies to your Katalon Studio (source), so you can easily write a producer / consumer in Java and then use them your test steps.

You can use WebSphere MQ JMS Extensions that provides basic implementations.

Here is the javadoc of the package that contains everything you need, especially MQMessageProducer and MQMessageConsumer.

Arnaud Claudel
  • 3,000
  • 19
  • 25
0

If you are talking about sending messages from Katalon to chat/messaging apps then yes.

For example, you can send JSON HTTP Post requests to Slack and Rocket chat. And I guess most of the newest chat apps can do something similar.

For details about Slack message format, see here.

Mate Mrše
  • 7,997
  • 10
  • 40
  • 77
  • My bad, I forgot to mentionned that but the MQ to use is an IBM MQ. I updated my post. – Royce Jul 26 '19 at 10:23
  • No problem, it should still be possible to consume API requests: https://developer.ibm.com/messaging/learn-mq/mq-tutorials/ibm-mq-messaging-rest-api/. The principles are the same, but someone who used IBM MQ should know more. – Mate Mrše Jul 26 '19 at 10:31