123456789101112131415161718192021222324252627282930313233343536 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2010, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="metricproxysetup" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="100001" logStartStop="false">
- <!--this handler needs to be loaded after the local MBean Server is fully initialized.-->
- <prerequisites>
- <prerequisite classExists="mx4j.remote.MX4JRemoteUtils"/>
- </prerequisites>
- <handlers>
- <handler name="CheckProxyHandler" classname="com.cognos.pogo.monitoring.jmx.remote.proxy.chooser.CheckProxyHandler">
- <proxylist>
- <proxy>com.cognos:type=Metrics,*</proxy>
- <proxy>com.cognos:type=MetricHealth,*</proxy>
- <proxy>com.cognos:type=ServiceHealth,*</proxy>
- <proxy>com.cognos:type=ServiceOperationalStatus,*</proxy>
- <proxy>com.cognos:type=ThresholdManager,*</proxy>
- <proxy>com.cognos:type=ReportServerInteractiveRequests,*</proxy>
- <proxy>java.lang:*</proxy>
- <proxy>com.cognos:type=MBeanDump,*</proxy>
- </proxylist>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="checkproxy" handler="metricproxysetup.CheckProxyHandler"/>
- </soapActions>
- <attributes>
- <attribute type="global">jmxProxyHostDispatchers</attribute>
- <attribute type="global">activeJMXProxyURI</attribute>
- </attributes>
- </service>
|