Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Cannot Reproduce
-
Affects Version/s: 1.3.3
-
Fix Version/s: None
-
Component/s: Transport: JMS
-
Labels:None
-
Environment:
Win2k, Jdk 1.4, WAS 6.0, MQ 6.0
-
Configuration:
-
Log Output:
-
Similar Issues:None
Description
I'm trying to dispatch message from own java application using MuleClient. I have created Queue Manager, Queues and configured Websphere MQ Queue Connection Factories as given by.
Here I have some java code snap.
****
try{
MuleClient client = new MuleClient();
client.setProperty("jms.connectionFactoryJndiName", "MuleJNDI");
client.setProperty("jms.jndiInitialFactory",
"com.ibm.websphere.naming.WsnInitialContextFactory");
client.setProperty("jms.specification", "1.1");
client.dispatch("jms://TTY.DELIVERYQUEUE","SAMPLE FROM SIMULATOR", null);
}catch(UMOException e){
e.printStackTrace();
}
*****
When try to run this java code its throws me following exception(field LOCAL_HOST_IP_ADDRESS not found) pls refer logoutput.
When I try to start the mule server using config file(pls refer below config), its also throws same error, I couldn't start the mule server.
Please comment on fixing this issue, update me if any thing else needs to be done.
Thanks in advance.