VirtualUI allows you to send external arguments in the url. Instead of passing static arguments from the application profile definition, using this feature you can send dynamic application arguments in a simple way. The only requirement to be met is that the arguments must be url encoded.
To build the url you need:
· The communication protocol (http or https).
· The Thinfinity VirtualUI server domain or IP address, and port.
· The application virtual path.
Build the url like this:
protocol://server.address:port/virtualpath/?arguments
As an example, we will send the "one", "two" and "three" argument values to the TestArguments program:
http://192.168.0.229:6580/TestArguments/?one%20two%20three
The following image shows the submit result:
Read more:
· Setting Command Line Arguments in the Application Profile
· Building the URL in Javascript
· Combining Application Profile and URL Command Line Arguments