Show configuration details of a queue manager connection
Purpose
Shows the configuration details of a specified queue manager connection.URI
To view configuration information about all queue manager connections, use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/QueueManagerConnection
Object configuration data
To view configuration information about a specific queue manager connection, use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/QueueManagerConnection/<NameOfQueueManagerConnection>
- NameOfQueueManagerConnection
- Specifies the name of the queue manager connection that you want to view the configuration details of.
Usage NotesĀ®
- The command must be capitalized as shown.
Example
This example shows the details of a specific queue manager connection,MyQMC
.The following example shows a GET method to display configuration details of a specific queue manager connection by using cURL:
curl -X GET http://127.0.0.1:9089/ima/v1/configuration/QueueManagerConnection/MyQMC
The following example shows a successful example response to the GET method that was used to display configuration details of a queue manager connection called "MyQMC" :
{
"QueueManagerConnection": {
"MyQMC": {
"QueueManagerName": "MyQM",
"ConnectionName": "192.0.2.0(1414)",
"ChannelName": "SYSTEM.IMA.SVRCONN",
"SSLCipherSpec": ""
}
}
}