Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31720 - Quoted text has no matching trailing quote character

31720   Quoted text has no matching trailing quote character

Cause

This error occurs when an option takes a quoted text value and a trailing quote character has been omitted.

In the following example, the second parameter of the openQueue method of the JadeMessagingFactory class has an option AccessPassword that takes a quoted value. The option should have been entered as AccessPassword='secret' but the trailing quote character is missing.

myQueue := factory.openQueue("JadeMQ://localnode/TestQ",
                             "Access=Protected;AccessPassword='secret");

Action

Correct your code.