我知道 MQExplorer GUI 可以显示谁通过某些通道连接到某个队列以及有关此连接的其他信息,但我没有在 PCF 中找到任何可以从 Java 中执行此操作的内容。
如果存在命令和示例,请提前感谢!
这显示示例片段显示如何检索conname
.
// Create the PCF message type for the inquire.
PCFMessage pcfCmd = new PCFMessage(MQConstants.MQCMD_INQUIRE_Q_STATUS);
// Add queue name
pcfCmd.addParameter(MQConstants.MQCA_Q_NAME, "MYQ");
// We want Q HANDLE attributes
pcfCmd.addParameter(MQConstants.MQIACF_Q_STATUS_TYPE, MQConstants.MQIACF_Q_HANDLE);
// We want to retrieve only the connection name
pcfCmd.addParameter(MQConstants.MQIACF_Q_STATUS_ATTRS, MQConstants.MQCACH_CONNECTION_NAME);
// Execute the command. The returned object is an array of PCF messages.
PCFMessage[] pcfResponse = pcfCM.agent.send(pcfCmd);
try{
for(int i = 0; i < pcfResponse.length;i++){
String name = (String) pcfResponse[i].getParameterValue(MQConstants.MQCACH_CONNECTION_NAME);
System.out.println("Connection Name: " + name);
}
}catch(Exception ex) {
System.out.print(ex);
}
您可以根据需要修改代码段。希望能帮助到你。
您在 MQ Explorer 中看到的是 MQSC 命令:
DISPLAY QSTATUS(<QName>) TYPE(HANDLE)
因此,您需要查找等效的 PCF 命令。