To write a message to a WebSphere MQ v7 queue, which of the following MQI API calls is NOT a required step of the application programming code?
A. MQCONM
B. MQPUT
C. MQSET
D. MQOPEN
In a distributed queuing architecture, where does the local queue manager store messages until it is ready to send them to the remote queue manager?
A. In a relational database
B. In a remote channel queue
C. In a remote queue definition
D. In a transmission queue
When an MQ application running on a distributed platform connects to a local queue manager, which statement is TRUE regarding security checks?
A. The queue manager uses the operating system userid associated with the MQ application.
B. The queue manager authenticates the MQ application using the userid and password as passed in the MQCONN call.
C. The queue manager examines the value of the MCAUSER field.
D. The queue manager examines the value of the SSLPEER field.
If the solution designer wishes to ensure that subscribing MQ applications receive message from a topic even if the subscribing MQ application is disconnected from the queue manager at the time the message is published, which action is required?
A. The publishing application must set the message as persistent.
B. The subscribing application must set the message as persistent.
C. The publishing application must set the subscription as durable.
D. The subscribing application must set the subscription as durable.
Which statement is TRUE regarding WebSphere MQ and message routing?
A. WebSphere MQ will lock for a consumer name in the message description (MQMD) header.
B. WebSphere MQ does not route based on the contents of the message body.
C. You can write an XPATH expression to tell WebSphere MQ how to route the message to the appropriate consumer.
D. WebSphere MQ will examine the message properties and route it to the appropriate consumer.
In order to run MQv7 on a distributed platform with earlier versions of WebSphere MQ running on the same physical server, what must you do?
A. This configuration is not allowed.
B. Install MQv7 into a different directory than previous versions.
C. Map listeners to different ports.
D. Both B and C.
What is the name of the MQMD field that a message producer uses to ensure that no consumers receive a message after a message has been on a destination queue for a specified period of time?
A. Timeout
B. Expiry
C. TimeToLive
D. MaxAge
If a .NET program using WebSphere MQ wishes to communicate with a Java program using WebSphere MQ, which of the following is NOT true?
A. The Java program can use the WebSphere MQ classes for Java.
B. The .NET program can use the WebSphere MQ classes for .NET.
C. The Java program can use the WebSphere MQ classes for JMS.
D. The .NET program can use the WebSphere MQ classes for NMS.
In order to write messages to a queue what operation must be done first?
A. Connect to the queue
B. Verify queue is empty
C. Set the queue to read/write mode
D. Open the queue
What happens to messages that have been read (MQGET) from a queue as part of a transaction in the event of an error during the transaction?
A. Message moved to dead-letter-queue.
B. Message sent to error log.
C. Message put back on queue.
D. Nothing, message already consumed.