123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005 2017
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd" name="systemService" registerInCM="true" CMdefaultName="SystemService" class="com.cognos.pogo.services.SoapActionHandlerService" logStartStop="true" stoppable="false">
- <handlers>
- <handler name="systemServiceChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="systemServiceHandler"/>
- <handler_ref name="systemServiceReporter"/>
- <handler_ref name="pogo.respond"/>
- </chain>
- </handler>
- <handler name="systemServiceHandler" classname="com.cognos.pogo.handlers.systemservice.SystemServiceHandler" reportingHandler="systemService.systemServiceReporter"/>
- <handler name="systemServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="SystemService" serviceType="systemService" skip_on_fault="false" setStatus="started"/>
- <handler name="LocalServerConnectionHandler" classname="com.cognos.pogo.http.inprocess.config.LocalServerConnectionHandler"/>
- </handlers>
- <soapActions>
- <soapAction path="systemService" handler="systemService.systemServiceChain"/>
- <soapAction path="http://developer.cognos.com/schemas/bibus/3#systemService" handler="systemService.systemServiceChain"/>
- <soapAction path="http://developer.cognos.com/schemas/systemService/1" handler="systemService.systemServiceChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/systemService/*/" handler="systemService.systemServiceChain"/>
- </soapActions>
- <attributes>
- <attribute>supportedCurrencies</attribute>
- <attribute>defaultFont</attribute>
- <attribute>supportedFonts</attribute>
- </attributes>
- </service>
|