Trace: • Replace Standard Application Menu • Client side Exception • Precise Object and Method Security • Defining and Using Application Parameters
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
jvx:client:gui:application_parameters [2018/02/01 13:00] admin created |
jvx:client:gui:application_parameters [2020/06/08 13:56] (current) cduncan Edited for English grammar (capitalization, punctuation, correct verb conjugation) |
||
---|---|---|---|
Line 24: | Line 24: | ||
A command line parameter is either defined in the IDE at the launch of the application, or is passed directly during the manual call. The parameter should be defined as follows: | A command line parameter is either defined in the IDE at the launch of the application, or is passed directly during the manual call. The parameter should be defined as follows: | ||
- | <file>name=value</file> | + | <file script> |
+ | name=value | ||
+ | </file> | ||
or | or | ||
- | <file>"name=value"</file> | + | <file script> |
+ | "name=value" | ||
+ | </file> | ||
== URL Parameters == | == URL Parameters == | ||
Line 34: | Line 38: | ||
If the application is launched as an RIA or web application, parameters can be attached to the URL in the usual manner: | If the application is launched as an RIA or web application, parameters can be attached to the URL in the usual manner: | ||
- | <file>http://hostname/index.html?param=value¶m2=value2</file> | + | <file url> |
+ | http://hostname/index.html?param=value¶m2=value2 | ||
+ | </file> | ||
== HTML file == | == HTML file == | ||
- | In the case of an RIA application we have to consider the Java Plugin´s conventions: | + | In the case of an RIA application we have to consider the Java plugin´s conventions: |
<file html> | <file html> | ||
Line 87: | Line 93: | ||
</file> | </file> | ||
- | The file should be found in the same path as the application implementation (directory, jar, URL). However, it can also be defined by the developer, either as command line parameter (second parameter) or by setting the parameter //config//, e.g.: **config=/package/app.xml** in the URL or HTML file. | + | The file should be found in the same path as the application implementation (directory, jar, URL). However, it can also be defined by the developer, either as command-line parameter (second parameter) or by setting the parameter //config//, e.g.: **config=/package/app.xml** in the URL or HTML file. |
- | If the XML configuration is used in combination with command line, URL or HTML parameters, the XML file parameters overwrite parameters with the same names. | + | If the XML configuration is used in combination with command line, URL, or HTML parameters, the XML file parameters overwrite parameters with the same names. |