Viewing a queue manager connection by using REST Administration APIs

System administrators can view a queue manager connection by using REST Administration APIs.

You can view a queue manager connection by using REST Administration APIs, or by using the Amlen WebUI. For more information about using the Amlen WebUI to view queue manager connections, see Configuring queue manager connections by using the Amlen WebUI.
  • To view 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

  • 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>

    Where:
    • NameOfQueueManagerConnection
      Specifies the name of the queue manager connection you want to view.
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": ""         
     }
   }
}