Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31738 - Queue does not exist

31738   Queue does not exist

Cause

This error occurs if you try to open a queue with the create=Never option (or equivalently the MustExist option) and the queue does not in fact exist.

In the following example, the openQueue method of the JadeMessagingFactory class is used to open a queue and the queue does not exist.

vars
    factory : JadeMessagingFactory;
begin
    create factory transient;
    myQueue := factory.openQueue("JadeMQ://localnode/TestQ", "MustExist");
epilog
    delete factory;
end;

Action

Correct your code.