Introduction

You can configure some iWay DQC run-time variables at the start of run time from a configuration file. The name of the configuration file (filename) is supplied by the -runtimeConfig filename parameter.

You can configure the following iWay DQC run-time variables:

You can create the configuration file in a text editor or by exporting the current settings of folder shortcuts and the current settings of data sources (Databases) in iWay DQC Manager.

The configuration file is an XML file with the following format:

<?xml version='1.0' encoding='utf-8'?>
   <runtimeconfig>
      <dataSources>
         <dataSource name="name" driverclass="com.mysql.jdbc.Driver" 
            url="jdbc:mysql://localhost/myDatabase" user="root" password="root">
            <properties>
               <property name="name" value="value" />
            </properties>
         </dataSource>
      </dataSources>
      <pathVariables>
         <pathVariable name="MyPath" value="C:/DQC/Workspace_Purity_Eclipse" />
      </pathVariables>
      <runtimeComponents>
         <runtimeComponent class="cz.adastra.cif.processor.monitoring.file.
          FileLoggerComp" fileName="filename" stdout="true"
          loggingIntervalInMins="1" />
      </runtimeComponents>
   </runtimeconfig>

iWay Software