1234567891011121314151617181920212223242526272829303132333435363738 |
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: CM
- (C) Copyright IBM Corp. 2012
- The source code for this program is not published or otherwise
- divested of its trade secrets, irrespective of what has been
- deposited with the U.S. Copyright Office.
- -->
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: CCS
- (c) Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="cacheService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="CacheService" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="E:\ccs_sb\main\src\dispatcher\p2pd\etc\services\services.xsd">
- <handlers>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="cacheService" skip_on_fault="false"/>
- <handler name="cacheServiceHandler" classname="com.ibm.cognos.pdc.cache.handlers.CacheDispatcherHandler" skip_on_fault="false"/>
- <handler name="cacheChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="cacheServiceHandler" skip_on_fault="false"/>
- <handler_ref name="pogo.respond" skip_on_fault="false"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="output" handler="cacheService.cacheChainHandler"/>
- </soapActions>
- </service>
|