12345678910111213141516171819202122232425262728 |
- <service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd" loadPriority="500" name="cpsproducers" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="CPS Producer Registration Service">
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cpscrn
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <handlers>
- <handler name="cpsServiceHandler" classname="com.cognos.cps.bseries.pogo.ProducerRegistrationHandler"/>
- <handler name="cpsChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="cpsServiceHandler"/>
- <handler_ref name="pogo.respond"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="cpsproducers" handler="cpsproducers.cpsChainHandler"/>
- </soapActions>
- </service>
|