Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We want to establish a jndi connection between 2 JBoss Servers. The primary objective is to call a class located remotely on server JBoss from the client JBoss.

We are using - Service Locator (To Call Business Delegate) (Client JBoss) - Three Properties of JNDI are sent (Client JBoss) - Remote and Local Interfaces implements Business Delegate (Server JBoss)

When we try to make a call we get following error. error javax.naming.NameNotFoundException: ConfigurationFacade not bound

We have included following JARs on client side. jboss-mbeans jboss-j2se jboss-kernel jboss-jmx jboss-vfs jboss-mdr jboss-profileservice-spi jboss-system jboss-system-jmx jboss-xml-binding

You can find further configuration details in this document.

Please let us know are we missing on some basic configuration.

share|improve this question

closed as too localized by Tim Post Jun 4 '12 at 8:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

javax.naming.NameNotFoundException: ConfigurationFacade not bound

This means exactly what it says. You have succeeded in contacting a Registry and it does not contain that name. What name did you use when binding to the Registry?

share|improve this answer
Hey There was some mistake in the code. We are now able to connect to successfully. Thanks for the answer anyways. – Kuntal Shah Jun 29 '11 at 11:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.