Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31724 - Option expects quoted text value

31724   Option expects quoted text value

Cause

This error occurs when an option requires a quoted text value and one has not been provided. 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='999' but the quote characters are missing.

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

Action

Correct your code.