123456789101112131415161718192021222324252627282930 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: CM
- (C) Copyright IBM Corp. 2011, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- contentManagerClient.xml is the dispatcher configuration file for the
- Content Manager Client "service". The Content Manager Client "service"
- provides some alternatives to the standard ContentManager (CM)
- BI BUS SOAP-based APIs.
- -->
- <service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="./ ./services.xsd"
- name="cmClientService"
- class="com.cognos.pogo.services.SoapActionHandlerService"
- logStartStop="false">
- <handlers>
- <handler name="cmGetData"
- classname="com.cognos.cm.client.GetDataHandler"/>
- </handlers>
- <soapActions>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/cmGetData/*/" handler="cmClientService.cmGetData"/>
- </soapActions>
- </service>
|