Yes, there are no specific command-line arguments. The only way is to use an environment variable reference in the XML (e.g. $(FILE_NAME) ). This variable can then be passed to the application in two ways: a) by adding it to the user's current environment variables; b) use the -D command-line option (e.g. -DFILE_NAME=my_file_name.dat) to set the values in the call to the application.
Hi,
Yes, there are no specific command-line arguments. The only way is to use an environment variable reference in the XML (e.g. $(FILE_NAME) ). This variable can then be passed to the application in two ways:
a) by adding it to the user's current environment variables;
b) use the -D command-line option (e.g. -DFILE_NAME=my_file_name.dat) to set the values in the call to the application.
That's exactly what I wanted. Thanks.