Product Information > JADE Error Messages and System Messages > 31700 through 31899 - Messaging Framework Errors > 31708 - String parameter has invalid characters

31708   String parameter has invalid characters

Cause

This error occurs when a string parameter contains characters that are invalid for the purpose of the method. In the following example, the first parameter of the openQueue method of the JadeMessagingFactory class is not in the correct transport_name :// queue_manager_name / queue_name format (because a forward slash character is missing).

myReplyQueue := factory.openQueue("JadeMQ:/localnode/TestQ",                                                          "Access=Public;Usage=Put");

Action

Correct your code.