dtjplex control file

To use many of the dtjplex actions (addVS, copyVS, deleteVS, exportVoiceHost, importVoiceHost, importVoiceAll), you also need a dtjplex control file to specify the names and other relevant attributes of the voice segments you want to operate on. Specify the control file using the -controlfile parameter. For example, dtjplex -action addVS -controlfile pizzavsegs.txt.

Syntax

The control file contains one or more entries each of which is ended by a line containing only a semicolon (;). The action is performed for each entry.

Each entry contains one or more lines. If the first nonblank character on a line is a pound or hash symbol (#), the remainder of the line is ignored (treated as a comment). Otherwise, the line must contain one, and only one, “parameter=value” pair. The parameters are not case sensitive but the values are. The parameters and their values are listed in detail, in Blueworx Voice Response for AIX: Deploying and Managing VoiceXML and Java Applications.

For each entry, parameter values are gathered from top to bottom and then the action is performed: if you do not specify a mandatory parameter in an entry, the value last specified for it in a previous entry is used.

To unset a parameter value, set it to null (“parameter=”): in this case, the default value is used.

Voice segments with names that use national characters

You can use the character_encoding keyword in the control file to specify the encoding of the content of control file: see individual action information in Blueworx Voice Response for AIX: Deploying and Managing VoiceXML and Java Applications.

The dtjplex command displays messages which you should check to be sure you have operated on the correct voice segments. If you are using national characters (8-bit ASCII or DBCS encoding), the messages may display the “wrong” characters. If you are worried that, for example, you have not added the correct voice segments to the Java voice segment space, use the dtjplex listVS command to list the voice segments.

You can use the -encoding parameter to specify the character encoding used by the listvs action to list the voice segments.

Syntax errors in the control file

If there is a syntax error in the control file an error message is displayed and processing stops. Entries in the control file are processed up to the syntax error, but no further entries are processed. If the action fails on the target host for an entry, an error message is displayed, and processing continues to the next entry in the control file.

Example

Figure 1 shows a dtjplex control file that could be used to add three voice segments from the Pizzas voice segment database to the Pizzas category in the Java voice segment space. After this, three voice segments are added from the Sandwiches voice segment database to the Sandwiches category. The purpose of this example is to show how parameter values are used repeatedly until a new value is specified.

Figure 1. Example of control file
# Example of control file for adding base voice segments
# from two voice databases to the Java voice segment space
#
# Set overall parameter values for Italian Pizza voice segments:
base_segment_database=Pizzas
segment_category=Pizzas
segment_locale=it_IT
# Set parameter values for individual segments:
base_segment_name=1
segment_name=1
;
base_segment_name=2
segment_name=2
;
base_segment_name=3
segment_name=3
;
# Set overall parameter values for American Sandwich voice segments:
base_segment_database=Sandwiches
segment_category=Sandwiches
segment_locale=en_US
# Set parameter values for individual segments:
base_segment_name=1
segment_name=1
;
base_segment_name=2
segment_name=2
;