Posted: Thu Oct 17, 2002 12:39 am Post subject: unable to load message catalog mqji
Newbie
Joined: 17 Oct 2002 Posts: 1
Dear All
i wrote a simple java code to connect MQ but have the error message
unable to load message catalog mqji
and reason code is 2195
someboy help me
Ryo
my code is :
import com.ibm.mq.*;
public class test
{
private String qManager = "test";
private MQQueueManager qMgr;
public static void main(String args[]){
new test();
}
public test(){
try{
MQEnvironment.hostname = "MQServerIP(1414)";
MQEnvironment.channel = "java.client.channel";
MQEnvironment.properties.put(MQC.TRANSPORT_PROPERTY,MQC.TRANSPORT_MQSERIES);
qMgr = new MQQueueManager("test");
}
catch(MQException ex)
{
}
}
}
Joined: 27 Aug 2001 Posts: 3023 Location: Dallas, TX, USA
You can find the message catalog mqji error by searching on this site. The 2195 is a general error and usually generates an FDC file that points to the real problem. You might want to look in \<mqmtop>\errors for the FDC file.
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