Views:

When the server fails to process client update notifications, succeeding entries in the queue may fail because previous queue entries are not deleted to allow the next ones to proceed.

Set the server to regularly clean the notifications queue for client updates:

  1. Go to the ...\PCCSRV\ installation directory.
  2. Open the Ofcscan.ini file in Notepad.
  3. Add the applicable entries under the INI_SERVER_SECTION section and set an appropriate value for each entry.
    [INI_SERVER_SECTION]
    Enable_Cancel_Notification={x}

    Where "x":
    0 = disable the function (default)
    1 = enable the function

    Cancel_Notification_Frequency={y}

    Where "y":
    1 = clean the queue monthly
    2 = clean the queue weekly
    3 = clean the queue daily (default)

    Cancel_Notification_Hour={h}

    Where "h" represents the hour which can be set to any value from 0 to 23, the default value is "1".

    Cancel_Notification_Minute={m}

    Where "m" represents the minute which can be set to any value from 0 to 59, the default value is "1".

    Cancel_Notification_DayOfMonth={d}

    Where "d" represents the day of the month which can be set to any value from 1 to 31, the default value is "1".

    Cancel_Notification_DayOfWeek={w}

    Where "w" represents the day of the week:

    0 = Sunday (default)
    1 = Monday
    2 = Tuesday
    3 = Wednesday
    4 = Thursday
    5 = Friday
    6 = Saturday

    For example, to trigger a cleanup daily at 22:30, set:

    [INI_SERVER_SECTION]
    Enable_Cancel_Notification = 1
    Cancel_Notification_Frequency = 3
    Cancel_Notification_Hour = 22
    Cancel_Notification_Minute = 30
    Cancel_Notification_DayOfMonth = 1
    Cancel_Notification_DayOfWeek = 1
  4. Save the changes to the Ofcscan.ini file.

This will empty the notification queue according to the specified schedule.