我知道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);
}
您可以根据需要修改代码段。希望能帮助到你。
关于java - 获取通过Java的PCF请求连接到IBM MQ队列的使用者的ip,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33493121/