Dear all,
I am working with JMS MQ and Websphere. I have followed the documents for setting the JMS environment, which are available at the url:
http://www7b.boulder.ibm.com/wsdd/library/techtip/0111_cox.html and
http://www7b.boulder.ibm.com/wsdd/library/techtip/0112_cox.html. I used the administrative console to create a conectionfactory and queue. I provided the name for the connectionfactory as myQCF and used the following code in a
jsp to get a JNDI lookup.
The code is as below:
InitialContext ctx =new InitialContext();
QueueConnectionFactory qcf = (QueueConnectionFactory)ctx.lookup("jms/myQCF");
The second line throws an exception stating that
Servlet Error: jms/myQCF: javax.naming.NameNotFoundException: jms/myQCF
at com.ibm.ejs.ns.jndi.CNContextImpl.doLookup(CNContextImpl.java:1435)
at com.ibm.ejs.ns.jndi.CNContextImpl.lookup(CNContextImpl.java:1115)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at delete_jsp_9._jspService(delete_jsp_9.java:96)
I have also used myQCF for lookup instead of jms/myQCF, but getting the same exception.
I have used dumpnamespace.bat to check for the JNDI, but this connectionfactory entry for myQCF is not available when this bat is run. That means the jndi is not binded to the websphere. Am i right?
Can anyone help me out in this.
regards,
desigan
desigan21@yahoo.com