MQ

 View Only
  • 1.  IBM MQ Explorer with CCDT JSON

    IBM Champion
    Posted Mon March 18, 2024 11:58 AM
    Edited by om prakash Mon March 18, 2024 11:58 AM

    Has anybody tried using CCDT JSON file and allow MQ Explorer use it to establish connection.

    The UI only looks for TAB file. 

    Any suggestions.



    ------------------------------
    om prakash
    ------------------------------



  • 2.  RE: IBM MQ Explorer with CCDT JSON

    IBM Champion
    Posted Mon March 18, 2024 02:00 PM
    Edited by om prakash Mon March 18, 2024 02:01 PM

    The error is as seen in the image.

    Works well with TAB file. Single TAB file with all queue managers.

    Similar JSON file with all queue managers; and it fails to accept. Tried it on MQ explorer 9.3

    mq explorer ccdt json



    ------------------------------
    om prakash
    ------------------------------



  • 3.  RE: IBM MQ Explorer with CCDT JSON

    Posted Mon March 18, 2024 03:40 PM

    Please share the content of json file (without IP address).



    ------------------------------
    RAJESH VERMA
    ------------------------------



  • 4.  RE: IBM MQ Explorer with CCDT JSON

    IBM Champion
    Posted Mon March 18, 2024 04:00 PM
    Edited by om prakash Mon March 18, 2024 04:00 PM

     JSON file. We have a list of qmgrs within a JSON. but this is snippet of it for a single qmgr.

    {
        "channels": [
        {
                "general": {
                    "description": "CCDT for MQDEV owned by MQ ADMIN"
                },
                "name": "TLS.MQDEV",
                "clientConnection": {
                    "connection": [
                        {
                            "host": "localhost",
                            "port": 1414
                        }
                    ],
                    "queueManager": "MQDEV"
                },
                "connectionManagement": {
                    "affinity": "none"
                },
                "transmissionSecurity": {
                    "cipherSpecification": "ECDHE_RSA_AES_128_CBC_SHA256"
                },
                "type": "clientConnection"
            }
     ]
    }



    ------------------------------
    om prakash
    ------------------------------



  • 5.  RE: IBM MQ Explorer with CCDT JSON

    Posted Mon March 18, 2024 05:40 PM

    i  updated and tested (channels --> channel ), it worked fine;

    {
        "channel":
        [
            {
                "general": {
                "description": "CCDT for MQDEV owned by MQ Admin"
                },
                "name": "SYSTEM.ADMIN.SVRCONN",
                "clientConnection":
                {
                    "connection":
                    [
                        {
                            "host": "10.0.12.102",
                            "port": 1414 
                        }
                    ],
                    "queueManager": "TESTQMHADR"
                },
                "type": "clientConnection"
            }
       ]
    }

    Thank you.



    ------------------------------
    RAJESH VERMA
    ------------------------------



  • 6.  RE: IBM MQ Explorer with CCDT JSON

    IBM Champion
    Posted Mon March 18, 2024 08:43 PM

    Thanks; i was able to find it out.

    it should be channel and not channels  as per doc. Even if it is a list of channel defs; the top element is yet channel



    ------------------------------
    om prakash
    ------------------------------