dispatcherCacheService.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!--
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: disp
  4. (C) Copyright IBM Corp. 2005 2012
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. -->
  7. <service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd" name="dispatcherCacheService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="dispatcherCacheService" logStartStop="false" stoppable="false">
  8. <handlers>
  9. <handler name="PrepareCacheContextHandler" classname="com.cognos.pogo.handlers.dispatchercache.PrepareCacheContextHandler"/>
  10. <handler name="byteServeHandler" classname="com.cognos.pogo.handlers.dispatchercache.ByteServeHandler" skip_on_fault="false"/>
  11. <handler name="cacheFileHandler" classname="com.cognos.pogo.handlers.dispatchercache.CacheFileHandler" skip_on_fault="false"/>
  12. <handler name="rsvpCacheHandler" classname="com.cognos.pogo.handlers.dispatchercache.RsvpCacheHandler" skip_on_fault="false"/>
  13. <handler name="dispatcherCacheServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="NoPublisher" reporterName="dispatcherCacheService" serviceType="dispatcherCacheService" skip_on_fault="false"/>
  14. <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="dispatcherCacheService" skip_on_fault="false"/>
  15. <handler name="dcRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  16. <chain>
  17. <handler_ref name="pogo.auth_check"/>
  18. <handler_ref name="PrepareCacheContextHandler"/>
  19. <handler_ref name="byteServeHandler"/>
  20. <handler_ref name="cacheFileHandler"/>
  21. <handler_ref name="pogo.respond"/>
  22. <handler_ref name="dispatcherCacheServiceReporter"/>
  23. </chain>
  24. </handler>
  25. <handler name="rcRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  26. <chain>
  27. <handler_ref name="pogo.auth_check"/>
  28. <handler_ref name="PrepareCacheContextHandler"/>
  29. <handler_ref name="rsvpCacheHandler"/>
  30. <handler_ref name="pogo.writeOutput"/>
  31. <handler_ref name="dispatcherCacheServiceReporter"/>
  32. </chain>
  33. </handler>
  34. <handler name="remoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
  35. <service name="dispatcherCacheService">
  36. <forwarding delayBetweenAttempts="0" maxAttempts="1" retryOnNoProcess="false"/>
  37. <soapAction>dc</soapAction>
  38. <soapAction>dc.server</soapAction>
  39. <soapAction>dispatcherCacheService</soapAction>
  40. <soapAction>dispatcherCacheService.server</soapAction>
  41. <soapAction>http://developer.cognos.com/schemas/bibus/3#dispatcherCacheService.server</soapAction>
  42. <soapAction>rc</soapAction>
  43. <soapAction>rc.get</soapAction>
  44. </service>
  45. </handler>
  46. </handlers>
  47. <soapActions>
  48. <soapAction path="dc" handler="dispatcherCacheService.dcRequestChain"/>
  49. <soapAction path="dc.server" handler="dispatcherCacheService.dcRequestChain"/>
  50. <soapAction path="dispatcherCacheService" handler="dispatcherCacheService.dcRequestChain"/>
  51. <soapAction path="dispatcherCacheService.server" handler="dispatcherCacheService.dcRequestChain"/>
  52. <soapAction path="http://developer.cognos.com/schemas/bibus/3#dispatcherCacheService.server" handler="dispatcherCacheService.dcRequestChain"/>
  53. <soapAction path="rc" handler="dispatcherCacheService.rcRequestChain"/>
  54. <soapAction path="rc.get" handler="dispatcherCacheService.rcRequestChain"/>
  55. </soapActions>
  56. <attributes>
  57. <attribute type="global">temporaryObjectLocation</attribute>
  58. <attribute type="global">temporaryObjectLifetime</attribute>
  59. </attributes>
  60. </service>