Jump to: navigation, search

View Cache Launcher


Revision as of 10:41, 13 November 2018 by BMA (Talk | contribs) (View Cache Launcher (VCL))

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UBIK® View Cache Launcher (VCL)

The VCL is an installable windows system service which can be used to automazically trigger one or more UBIK contexts(s) to build up its view cache.

After unpacking the VCL binaries and config-files, move the files to a directory where the local system account (or the specified one configured to run the VCL service) is allowed to execute binaries.

The VCL is configured by “UBIK.VCL.exe.config":

  • StatusURI: configure the service IP, the webservice path, appand context according to the installed UBIK-configuration on the IIS.
  • TriggerUri: see StatusURI
  • TriggerInterval: when the viewcache is already active, refresh it at least after this interval.
  • OfflineCheckInterval: when the viewcache can not be contacted or is offline, retry to trigger the viewcache at least after this time interval.

Example

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
    </startup>
    <appSettings>
      <add key="StatusUri" value="https://10.86.47.16/CLIENT/UBIK.DURR/CONTENT/UbikContent.svc/GetViewStateInformation/APP_DURR_001/CXT_DURR_001" />
      <add key="TriggerUri" value="https://10.86.47.16/CLIENT/UBIK.DURR/CONTENT/UbikContent.svc/TriggerViewStateUpdate/APP_DURR_001/CXT_DURR_001" />
      <add key="TriggerInterval" value="7200" />
      <add key="OfflineCheckInterval" value="60" />
      <add key="LogPath" value="D:\UBIK\LOG\VCL\log.txt"/>
    </appSettings>
</configuration>

Configure more than one service and/or context to be updated

Please duplicate the entries used and add a number suffix. Here is an example:

<add key="StatusUri1" value="https://10.86.47.16/UBIK/PROJECT01/CONTENT/UbikContent.svc/GetViewStateInformation/APP_001/CXT_001" />
<add key="StatusUri2" value="https://10.86.47.16/UBIK/PROJECT01/CONTENT/UbikContent.svc/GetViewStateInformation/APP_001/CXT_002" />

etc.