+

Search Tips   |   Advanced Search

Create a Diagnostic Provider registration XML file


The Diagnostic Provider registration XML is used to provide information about the exposed configuration, state, and self diagnostic attributes and tests to the Diagnostic Provider utility. It is also used to populate objects needed later in the process, to assist in filtering, and to assist in localization.

Programming knowledge of the system and the proper authorities to perform the following steps.

The steps that follow outline a general process for creating a Diagnostic Provider (DP) registration XML file.

 

  1. Start with the DP document type definition (DTD). If we are using the helper methods (see the step called Create the DP implementation in Create a Diagnostic Provider), we can use this DOCTYPE line to pick up the common DTD:

    <!DOCTYPE diagnosticProvider PUBLIC "RasDiag" "/DiagnosticProvider.dtd">
    
    If extending an existing MBean with an existing XML configuration, we might need either to add the DP XML to an existing DTD, or omit the DP XML entirely. If we omit the DP XML, you will not be able to validate that your XML file is well formed.

  2. Follow the conventions described in Diagnostic Provider Extensible Markup Language to help keep the XML consistent with other components. We can find an example of a small DP registration XML file in Diagnostic Provider method implementation.