123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005, 2019
- 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="dispatcher" class="com.cognos.pogo.services.SoapActionHandlerService" logStartStop="false">
- <handlers>
- <handler name="checkCapabilities" classname="com.cognos.pogo.auth.CapabilitiesCheckHandler"/>
- <handler name="AdminRequestHandler" classname="com.cognos.pogo.handlers.configurable.AdminRequestHandler" skip_on_fault="true"/>
- <handler name="CamPassportCookieHttpOnlyHandler" classname="com.cognos.pogo.handlers.engine.CamPassportCookieHttpOnlyHandler" skip_on_fault="true"/>
- <handler name="if_must_update_status" classname="com.cognos.pogo.handlers.logic.IfHandler" if_prop="dispatcher.updateStatus" if_handler="dispatcher.dispatcherStatusHandler" skip_on_fault="false"/>
- <handler name="dispatcherStatusHandler" classname="com.cognos.pogo.handlers.engine.DispatcherStatusHandler" skip_on_fault="false"/>
- <handler name="adminRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="checkCapabilities"/>
- <handler_ref name="AdminRequestHandler"/>
- <handler_ref name="bridge.response"/>
- <handler_ref name="pogo.writeOutput"/>
- <handler_ref name="CamPassportCookieHttpOnlyHandler"/>
- <handler_ref name="if_must_update_status"/>
- </chain>
- </handler>
- <!-- Change the Sax reader pool from advanced setting in configuration -->
- <handler name="SaxReaderPoolHandler" classname="com.cognos.pogo.pdk.xml.SaxReaderPoolHandler"/>
- <!-- allow for static use of advanced settings -->
- <handler name="AdvancedSettingParameterHandler" classname="com.cognos.pogo.handlers.util.AdvancedSettingParameterHandler"/>
- <!-- Write runtime state to properties file for Titan Configuration -->
- <handler name="WriteConfigurationToFileHandler" classname="com.cognos.pogo.handlers.util.WriteConfigurationToFileHandler" serverList="bi-loadbalancer.listOfServers" isSecure="bi-loadbalancer.isSecure" serviceName="" serviceBlacklist="powerPlayService"/>
- </handlers>
- <soapActions>
- <soapAction path="dispatcher" handler="dispatcher.adminRequestChain"/>
- <soapAction path="http://developer.cognos.com/schemas/bibus/3#dispatcher" handler="dispatcher.adminRequestChain"/>
- <soapAction path="http://developer.cognos.com/schemas/dispatcher/1" handler="dispatcher.adminRequestChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/dispatcherService/*/" handler="dispatcher.adminRequestChain"/>
- </soapActions>
- <attributes>
- <attribute type="global">cookieCAMPassportHttpOnly</attribute>
- <attribute>advancedSettings</attribute>
- </attributes>
- </service>
|