Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31735 - Only localnode queue manager is currently supported

31735   Only localnode queue manager is currently supported

Cause

This error occurs when using the JadeMQ transport and you attempt to access the queue manager executing on another node. In the following example, the first parameter of the openQueue method of the JadeMessagingFactory class specified the URI of the queue. (The only permissible location for the queue manager is localnode; that is, "JadeMQ://localnode/queuename".)

myQueue := factory.openQueue("JadeMQ://remotenode/TestQ", null);

Action

Correct your code.