DiscoXmlRpcHelperSchema.cfg configuration file

The DiscoXmlRpcHelperSchema.cfg configuration file can be used to configure the XML-RPC helper, which enables Network Manager to communicate with EMS collectors using the XML-RPC interface.

Database table used

The DiscoXmlRpcHelperSchema.cfg configuration file can be used to configure inserts into the xmlRpcHelper.configuration database table.

This example insert configures the XML-RPC helper to:
  • Use one thread of process execution.
  • Allow a maximum size of 1048576 bytes for an XML-RPC response.
insert into xmlRpcHelper.configuration
(
    m_NumThreads,
    m_MaxResponseSize
)
values
(
    1, 1048576
);
Note: The default maximum response size might be too small when running a Collector-based discovery against Collectors that result in very large responses. In such cases, increase the maximum response size. To increase the maximum response size, set the m_MaxResponseSize parameter to a higher value. Make sure you set the same value for m_MaxResponseSize in both of the following files:
  • NCHOME/etc/precision/DiscoCollectorFinderSchema.cfg
  • NCHOME/etc/precision/DiscoXmlRpcHelperSchema.cfg