PARAMETERS

The PARAMETERS element acts as a parent container for parameters provided on the DVM command line.

Syntax

<PARAMETERS> 
   [<PARAMETER>...</PARAMETER>][...]
</PARAMETERS>

Child elements

Usage

You use this element to provide parameters for the start of the DVM on the command line.

Usage examples

The following example provides two parameters:
  • Hello world!
  • Again
<PARAMETERS> 
  <PARAMETER>Hello world!</PARAMETER>
  <PARAMETER>Again</PARAMETER>
</PARAMETERS>
Parameters with URL arguments
If the AllowUrlParameters attribute in the EXECUTION (for an application) is set to TRUE, parameters can be passed as arguments in the application URL using the format "Arg=value". For example, the "myApp" application is launched with two arguments by the "myWebServer" Web server:
http://myWebServer/gas/ua/r/myApp?Arg=Val1&Arg=Val2
If URL parameters are allowed, these parameters are listed after the ones defined in the PARAMETERS element of the configuration file.
Note: For Web services applications, the AllowUrlParameters attribute is not supported.

Parent elements