Customize configuration files

Configuration files let you customize advanced settings such as security information and the WSE configuration. These files let you control the behavior of the test during runtime.

You can customize the test run further, by filtering out the input or output. In addition, you can configure security information. such as token information and whether or not to allow unsigned test certificates.

To customize configuration files:

  1. Determine the location of the configuration file. The standard .NET configuration file, mmdrv.exe.config is located in the product's bin folder. Some applications have their own file, app.config.

  2. Save the application's configuration file. If your application has its own app.config file:

    • To apply the configuration information globally to all scripts, save the app.config file as mmdrv.exe.config in the bin folder, overwriting the existing file.

    • To apply the configuration information locally, specifically for this script, copy the app.config file to the script's folder. This overrides the mmdrv.exe.config file, and remains associated with this script even when you copy it to other machines.

  3. Set the security - optional

    By default, VuGen allows unsigned certificates to facilitate testing. To disallow unsigned certificates, modify the allowTestRoot flag in the <security> section to false.

    <security>

       <x509 storeLocation="currentuser" alllowTestRoot="false"

Back to top