1234567891011121314151617181920212223242526272829303132333435 |
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: PDC
- (C) Copyright IBM Corp. 2012, 2013
- 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.
- -->
- <service name="pdc" class="com.cognos.pogo.services.DefaultHandlerService"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="E:\ccs_sb\main\src\dispatcher\p2pd\etc\services\services.xsd"
- loadPriority="10"
- registerInCM="false"
- CMdefaultName="PDC">
- <handlers>
- <handler name="pdcServiceHandler"
- classname="com.ibm.cognos.pdc.core.ehcache.pogo.EhCacheDispatcherHandler"
- skip_on_fault="false"/>
- <handler name="pdcChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="pdcServiceHandler" skip_on_fault="false"/>
- <handler_ref name="pogo.respond" skip_on_fault="false"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="pdc" handler="pdc.pdcChainHandler"/>
- </soapActions>
- </service>
|