Top 17 Jms Adapter Interview Questions You Must Prepare 27.Jul.2024

Q1. Which Property We Have To Use To Process Jms, Aq Or Mq Messages On One Node In Cluster Environment?

We use singleton property in composite.xml file.

Q2. What All Operations We Can Perform With Jms Adapter?

We can perform following operations with JMS adapter.

  1. Read
  2. Write
  3. Sync Read & Write

Q3. Can We Set Polling Frequency For Aq And Mq Adapters?

No, we can’t set polling frequencies for AQ and MQ adapters as both the adapters are event driven.

Q4. What Is Difference Between Jms, Aq And Mq?

JMS is Java Message Queue which is open source, AQ is advanced queue which is Oracle standard and MQ is message queue which is IBM standard.

Q5. Can We Add Custom Header Properties To Jms Header While Sending Message To Jms Queue/topic?

Yes, we can do that.

Q6. Do We Always Need To Create Connection Factory?

No, you need to create only when you need to specify custom properties otherwise you can use default connection factories.

Q7. These Adapters Come Under Tractional Or Non-tractional Category?

These adapters come under tractional adapters category as these supports tractions.

Q8. What Is Persistent Store?

The persistent store provides a built-in, high-performance storage solution for WebLogic Server subsystems and services that require persistence. For example, it can store persistent JMS messages or temporarily store messages sent using the Store-and-Forward feature. The persistent store supports persistence to a file-based store or to a JDBC-enabled database.

Q9. Can We Read Custom Header Properties?

Yes, we can read custom header properties from JMS queue/topic by specifying the property name that we want to read.

Q10. What Is Difference Between Jms Queue And Topic?

JMS queue is used when we have one to one interaction, consumer put the message to JMS queue but only listener can pick the data from that queue as once that listener pick the data, data get deleted from the queue.

JMS topic is based on publish subscribe model, here multiple listeners/consumer can consume the same message. JMS topic is used when we need to trfer same data to multiple places.

Q11. What Is Message Selector Property?

When we read the data from JMS queue/topic based upon some condition then this property is used. E.g. we use same queue to store different types of message so in one flow we need to pick only Sales Order information so in sales order composite we use message selector property to pick only that record.

Q12. How We Can Do Retry Once Message Roll Back To Jms Queue?

We have “Deliver Failure” tab in JMS queue where we can set properties to do retry after certain intervals.

Q13. Why Jms, Aq And Mq Adapters Are Used?

JMS adapter is used to read/write data from/to JMS queue/topic. AQ adapter is used to deal with AQ and same way MQ adapter is used to interact with MQ.

Q14. Which Property We Need To Use With Singleton Property To Process The Message In Sequential Order For Aq?

We need to set activtionInstances=1 along with singleton property for AQ adapter in cluster environment to process message in sequential order.

Q15. What Parameters We Need To Set In Delivery Failure Tab?

We need to set following parameters.

Redelivery Delay Override: Time interval between retries. It is in milliseconds.

Redelivery Limit: number of retries

Expiration Policy:

Redirect: redirect message to different queue.

Log: log the message.

Discard: discard message and it will be lost.

Error Destination: If you choose “Redirect” then chooses the queue to which you want to redirect message.

Q16. What Is Connection Factory?

A connection factory is an object that a JMS client uses to create a connection with a JMS provider. We use connection factory in SOA suite tool to connect to server where JMS queue/topic created.

Q17. Which Property We Need To Use To Control Number Of Message Processed From Mq At One Time?

We need to use Inbound Thread Count property to control number of messages which MQ adapter pick from MQ.