The default behavior of the Exception Manager is to publish exceptions to the Windows Event Log, however, Aptify also provides the ability to write the log exceptions to a file within the Aptify database. In addition, Aptify also includes publishers that can write to a database or send an SMTP message and it is possible to create new publishers as a plug-in. Aptify has the ability to enable a database publisher. Enabling the database publisher sends exceptions logged in the database to the Error Log entity, and saved as Error Log records so that the Aptify viewing system and entity form template functionality can be used to find and view these exceptions.

When only the database publisher is enabled in Aptify, exceptions are no longer sent to the Windows Event Log. It is possible to enable both publishers so that exceptions are sent to the Windows Event Log and to Error Log records.

 

The steps below illustrate how to configure Aptify so that exceptions are logged to a common file.

  1. Log in to Aptify using the default login dialog if you have not previously logged in as this user.
  2. Locate the Startup.exe.config and Aptify Shell.exe.config file on your client computer (typically located in C:\Program Files\Aptify 6.0).
  3.  Right-click the file and select Properties from the pop-up menu to open the Windows Properties dialog for this file.
  4.  If necessary, clear the Read-only check box in the Attributes section.
  5.  Click OK to close the file’s Properties dialog.
  6. Open Startup.exe.config and Aptify Shell.exe.config using a text editor, such as Notepad or Notepad++.
  7.  Uncomment the publisher mode attribute from within the exceptionManagement section by removing the <!-- from before and the --> from the end. The line is below:

    <publisher mode="on" days="3"  exceptionformat="xml" directory="c:\" assembly="AptifyExceptionManagement" type="Aptify.Framework.ExceptionManagement.XMLFilePublisher"/>

     

  8.  Configure the settings to fit your organization’s needs.

  9. Save the Startup.exe.config and Aptify Shell.exe.config file (or web.config for Aptify web or AptifyAsyncProcessor.exe.config file on the Application server).

 

When the database publisher is enabled, all exceptions are logged to Error Log records (unless you have it configured to log to both Aptify and the Windows Event Log). This can result in a large number of records which you may find you want to archive or delete overtime. There is not currently an archive run type to support archiving. This is a feature we are considering for future releases. Please contact Aptify if you are interested in this feature. See Archiving Transactional Data for more information.

Aptify adds a stored procedure database object, spDeleteERRORLOGRecordBefore, to the Error Log entity to enable the deletion of all Error Log records created before a date specified in a parameter, @BeforeDate.