The primary means of communicating with a JSM service is by sending a command string.
The command string consists of a command name and zero or more keywords.
COMMAND KEYWORD1( VALUE ) KEYWORD2( VALUE )
The command string is parsed by the JSM service.
Special handling of keyword values is possible by using double quotes.
If a value requires leading and or trailing blanks to be preserved then double quote the value.
Any value that starts and ends with double quotes will have the double quotes removed.
Double quote the keyword value to protect open and close brackets within the keyword value.
If the value also contains double quotes and the entire string is double quoted then escape the double quote with a backslash.
|
When a command string is printed out in the SERVICE.TXT or TRANSPORT.TXT trace files, the keyword password values are hidden by five stars (*****).
Any command keyword named PASSWORD or ending with the string PASSWORD will have the keyword value hidden.
Any command keyword named MASTER will have the keyword value hidden.
The following command keywords will have their password component hidden.
To view passwords in the trace files, add the trace.passwords=*yes property to the manager.properties file.
To view field information sent with the command, add the trace.fields=*yes property to the manager.properties file.
Each JSM client has different command capabilities.
RPG command |
|
RDML command |
|
RDMLX command |
If a JSMDirect function needs to access multiple services within the same program, then it is recommended that you use multiple JSM connections.
It is possible for a single JSM connection to use multiple services sequentially by unloading and loading another service.
JSM OPEN |
|
|
|
SERVICE_LOAD SERVICE(servicename1) |
Load specified service program |
|
User-defined commands |
|
|
SERVICE_UNLOAD |
Unload service |
|
|
|
|
SERVICE_LOAD SERVICE(servicename2) |
Load specified service program |
|
User-defined commands |
|
|
SERVICE_UNLOAD |
Unload service (optional) |
JSM CLOSE |
|
|
The JSMStorage object is persistent between JSM OPEN and JSM CLOSE, so servicename1 can put an object into the JSMStorage object and servicename2 can get this saved object. Alternatively, you may write information to a file that can be shared between services.