dispatcher.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: disp
  5. (C) Copyright IBM Corp. 2005, 2019
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd" name="dispatcher" class="com.cognos.pogo.services.SoapActionHandlerService" logStartStop="false">
  9. <handlers>
  10. <handler name="checkCapabilities" classname="com.cognos.pogo.auth.CapabilitiesCheckHandler"/>
  11. <handler name="AdminRequestHandler" classname="com.cognos.pogo.handlers.configurable.AdminRequestHandler" skip_on_fault="true"/>
  12. <handler name="CamPassportCookieHttpOnlyHandler" classname="com.cognos.pogo.handlers.engine.CamPassportCookieHttpOnlyHandler" skip_on_fault="true"/>
  13. <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"/>
  14. <handler name="dispatcherStatusHandler" classname="com.cognos.pogo.handlers.engine.DispatcherStatusHandler" skip_on_fault="false"/>
  15. <handler name="adminRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  16. <chain>
  17. <handler_ref name="pogo.auth_check"/>
  18. <handler_ref name="checkCapabilities"/>
  19. <handler_ref name="AdminRequestHandler"/>
  20. <handler_ref name="bridge.response"/>
  21. <handler_ref name="pogo.writeOutput"/>
  22. <handler_ref name="CamPassportCookieHttpOnlyHandler"/>
  23. <handler_ref name="if_must_update_status"/>
  24. </chain>
  25. </handler>
  26. <!-- Change the Sax reader pool from advanced setting in configuration -->
  27. <handler name="SaxReaderPoolHandler" classname="com.cognos.pogo.pdk.xml.SaxReaderPoolHandler"/>
  28. <!-- allow for static use of advanced settings -->
  29. <handler name="AdvancedSettingParameterHandler" classname="com.cognos.pogo.handlers.util.AdvancedSettingParameterHandler"/>
  30. <!-- Write runtime state to properties file for Titan Configuration -->
  31. <handler name="WriteConfigurationToFileHandler" classname="com.cognos.pogo.handlers.util.WriteConfigurationToFileHandler" serverList="bi-loadbalancer.listOfServers" isSecure="bi-loadbalancer.isSecure" serviceName="" serviceBlacklist="powerPlayService"/>
  32. </handlers>
  33. <soapActions>
  34. <soapAction path="dispatcher" handler="dispatcher.adminRequestChain"/>
  35. <soapAction path="http://developer.cognos.com/schemas/bibus/3#dispatcher" handler="dispatcher.adminRequestChain"/>
  36. <soapAction path="http://developer.cognos.com/schemas/dispatcher/1" handler="dispatcher.adminRequestChain"/>
  37. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/dispatcherService/*/" handler="dispatcher.adminRequestChain"/>
  38. </soapActions>
  39. <attributes>
  40. <attribute type="global">cookieCAMPassportHttpOnly</attribute>
  41. <attribute>advancedSettings</attribute>
  42. </attributes>
  43. </service>