|
RSS Feed - WebSphere MQ Support
|
RSS Feed - Message Broker Support
|
 |
|
pcf error 3014 |
« View previous topic :: View next topic » |
Author |
Message
|
chaian |
Posted: Wed Mar 31, 2004 6:12 am Post subject: pcf error 3014 |
|
|
Novice
Joined: 30 Sep 2003 Posts: 14 Location: Italy
|
Performing a pcf request I receive back the 3014 code that is:
MQRCCF_CFIN_PARM_ID_ERROR
Looking to the code I'm not able to find errors:
PCFMessageAgent agent;
PCFMessage request;
PCFMessage [] responses;
agent = new PCFMessageAgent(this.host,this.port, this.channel);
request = new PCFMessage(CMQCFC.MQCMD_INQUIRE_Q);
request.addParameter(CMQC.MQCA_Q_NAME, "*");
request.addParameter(CMQC.MQIA_Q_TYPE, CMQC.MQQT_ALL);
request.addParameter(CMQCFC.MQIACF_Q_ATTRS,CMQCFC.MQIACF_ALL);
responses = agent.send (request); //here throws exception
am I sleeping today or there are no bugs here?
Thk |
|
Back to top |
|
 |
RogerLacroix |
Posted: Wed Mar 31, 2004 1:52 pm Post subject: |
|
|
 Jedi Knight
Joined: 15 May 2001 Posts: 3264 Location: London, ON Canada
|
Hi,
I have only used CMQCFC.MQIACF_ALL for getting QMgr attributes and this is how I coded it:
Code: |
request.addParameter(CMQCFC.MQIACF_Q_MGR_ATTRS, new int [] { CMQCFC.MQIACF_ALL }); |
My guess is that this SHOULD work (I have not tried it):
Code: |
request.addParameter(CMQCFC.MQIACF_Q_ATTRS, new int [] { CMQCFC.MQIACF_ALL }); |
Regards,
Roger Lacroix _________________ Capitalware: Transforming tomorrow into today.
Connected to MQ!
Twitter |
|
Back to top |
|
 |
|
|
 |
|
Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|