12345678910111213141516171819202122232425262728 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: zipi
- (C) Copyright IBM Corp. 2013, 2015
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service loadPriority="90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd" name="zipiService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="zipiService">
- <handlers>
- <handler name="zipiHandler" classname="com.ibm.cognos.pogo.zipi.handler.ZipiHandler"/>
- <handler name="zipiChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="zipiHandler"/>
- <handler_ref name="pogo.respond"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/zipiService/*/" handler="zipiService.zipiChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/zipiService/*/.absolute" handler="zipiService.zipiChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/zipiService/*/.control" handler="zipiService.zipiChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/zipiService/*/.session" handler="zipiService.zipiChainHandler"/>
- </soapActions>
- </service>
|