12345678910111213141516171819202122232425262728 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: bds
- (C) Copyright IBM Corp. 2012, 2014
- 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="burstDistributionService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="burstDistributionService">
- <handlers>
- <handler name="burstDistributionServiceHandler" classname="com.ibm.cognos.bds.handler.BurstHandler"/>
- <handler name="burstChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="burstDistributionServiceHandler"/>
- <handler_ref name="pogo.respond"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/burstDistributionService/*/" handler="burstDistributionService.burstChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/burstDistributionService/*/.absolute" handler="burstDistributionService.burstChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/burstDistributionService/*/.control" handler="burstDistributionService.burstChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/burstDistributionService/*/.session" handler="burstDistributionService.burstChainHandler"/>
- </soapActions>
- </service>
|