Editing Automated Task Framework's Web.config File


Before configuring an automated task in the Ingeniux Automated Tasks Framework application, edit the default values in the Web.config file's appSettings element.

To configure the sample Web.config file:

  1. In a file browser, navigate to [path-to-cms-site-instance]\App_Data\xml\Custom\automated\Standard_Operations.
  2. Open Web.config in a text editor and examine the appSettings node:
    
    <appSettings>
        ...
        <add key="DoEmptyRecycleBin" value="true" />
        <add key="DoPublish" value="true" />
        <add key="PublishTargets" value="Production" />
    </appSettings>
    
  3. In this example, these key/value pairs configure the default automated tasks. For instance, when DoEmptyRecycleBin or DoPublish are set to true, those tasks execute. The value set to the PublishTargets key specifies the publishing target. (Edit appSettings values according to your needs.)

Next Steps: