12345678910111213141516171819202122232425262728293031323334 |
- <?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="contentManagerCacheService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="true" CMdefaultName="ContentManagerCacheService" parser="stax" bodyHandlerFactory="contentManagerCacheService.cmCacheServiceHandler">
- <handlers>
- <handler name="cmCacheServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="contentManagerCacheService" serviceType="contentManagerCacheService" skip_on_fault="false"/>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="contentManagerCacheService" skip_on_fault="false"/>
- <handler name="cmCacheServiceHandler" classname="com.cognos.pogo.contentmanager.cache.CMCacheHandler"/>
- <handler name="cmCacheChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="cmCacheServiceHandler"/>
- <handler_ref name="bridge.response"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="cmCacheServiceReporter"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="contentManagerCacheService" handler="contentManagerCacheService.cmCacheChainHandler"/>
- <!-- Don't bridge -->
- <soapAction path="http://developer.cognos.com/schemas/contentManagerCacheService/1" handler="contentManagerCacheService.cmCacheChainHandler" bridgeVersion="*"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/contentManagerCacheService/*/" handler="contentManagerCacheService.cmCacheChainHandler" bridgeVersion="*"/>
- </soapActions>
- <attributes>
- <attribute>cmcsHeapLimit</attribute>
- </attributes>
- </service>
|