I am having trouble adding parameters to a specific PCF Message. I am trying to use Inquire Log
(http://publib.boulder.ibm.com/infocenter/wmqv6/v6r0/index.jsp?topic=%2Fcom.ibm.mq.csqzac.doc%2Fpc12720_.htm) and as you can see it only has one optional parameter. But when I look at the response list it shows that I should be able to get information such as TotalLogs
or LogUsed
.
What I am trying to do it:
PCFMessage inquireLogStatus = new PCFMessage(CMQCFC.MQCMD_INQUIRE_LOG);
inquireLogStatus.addParameter(CMQCFC.MQSYSP_TYPE_LOG_STATUS, CMQCFC.MQIACF_SYSP_FULL_LOGS);
Or something along those lines... any ideas? I keep getting:
3014 (0BC6): MQRCCF_CFIN_PARM_ID_ERROR
Thanks ahead of time for anything you can tell me.