Queueconnectionfactory cannot be found during JMS development under jboss5.1

Source: Internet
Author: User

When developing JMS in jboss5.1 today, call the followingCodeError:

 
  Queueconnectionfactory Factory=(Queueconnectionfactory) CTX. Lookup ("Queueconnectionfactory");

Error exception information:

  1   Javax. Naming. namenotfoundexception: queueconnectionfactory not bound
2 At org. jnp. server. namingserver. getbinding (namingserver. Java: 771 )
3 At org. jnp. server. namingserver. getbinding (namingserver. Java: 779 )
4 At org. jnp. server. namingserver. GetObject (namingserver. Java: 785 )
5 ...................
6

Solution:

Log on to http: // localhost: 8090/JMX-console/of jboss5.1 and search for the JBoss/service = jndiview/LIST/Global JNDI namespace. Only connectionfactory is available!

Therefore, modify queueconnectionfactory in the Java class that sends the message as follows:
Queueconnectionfactory factory = (queueconnectionfactory) CTX. Lookup ("queueconnectionfactory ");
Change to -->
Queueconnectionfactory factory = (queueconnectionfactory) CTX. Lookup ("connectionfactory ");
From this we can guess that under jboss5.1, The connectionfactory of P2P and pub/sub may have been integrated, so there is no queueconnectionfactory.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.