12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005 2012
- 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="dispatcherCacheService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="false" CMdefaultName="dispatcherCacheService" logStartStop="false" stoppable="false">
- <handlers>
- <handler name="PrepareCacheContextHandler" classname="com.cognos.pogo.handlers.dispatchercache.PrepareCacheContextHandler"/>
- <handler name="byteServeHandler" classname="com.cognos.pogo.handlers.dispatchercache.ByteServeHandler" skip_on_fault="false"/>
- <handler name="cacheFileHandler" classname="com.cognos.pogo.handlers.dispatchercache.CacheFileHandler" skip_on_fault="false"/>
- <handler name="rsvpCacheHandler" classname="com.cognos.pogo.handlers.dispatchercache.RsvpCacheHandler" skip_on_fault="false"/>
- <handler name="dispatcherCacheServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="NoPublisher" reporterName="dispatcherCacheService" serviceType="dispatcherCacheService" skip_on_fault="false"/>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="dispatcherCacheService" skip_on_fault="false"/>
- <handler name="dcRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="PrepareCacheContextHandler"/>
- <handler_ref name="byteServeHandler"/>
- <handler_ref name="cacheFileHandler"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="dispatcherCacheServiceReporter"/>
- </chain>
- </handler>
- <handler name="rcRequestChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="PrepareCacheContextHandler"/>
- <handler_ref name="rsvpCacheHandler"/>
- <handler_ref name="pogo.writeOutput"/>
- <handler_ref name="dispatcherCacheServiceReporter"/>
- </chain>
- </handler>
- <handler name="remoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
- <service name="dispatcherCacheService">
- <forwarding delayBetweenAttempts="0" maxAttempts="1" retryOnNoProcess="false"/>
- <soapAction>dc</soapAction>
- <soapAction>dc.server</soapAction>
- <soapAction>dispatcherCacheService</soapAction>
- <soapAction>dispatcherCacheService.server</soapAction>
- <soapAction>http://developer.cognos.com/schemas/bibus/3#dispatcherCacheService.server</soapAction>
- <soapAction>rc</soapAction>
- <soapAction>rc.get</soapAction>
- </service>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="dc" handler="dispatcherCacheService.dcRequestChain"/>
- <soapAction path="dc.server" handler="dispatcherCacheService.dcRequestChain"/>
- <soapAction path="dispatcherCacheService" handler="dispatcherCacheService.dcRequestChain"/>
- <soapAction path="dispatcherCacheService.server" handler="dispatcherCacheService.dcRequestChain"/>
- <soapAction path="http://developer.cognos.com/schemas/bibus/3#dispatcherCacheService.server" handler="dispatcherCacheService.dcRequestChain"/>
- <soapAction path="rc" handler="dispatcherCacheService.rcRequestChain"/>
- <soapAction path="rc.get" handler="dispatcherCacheService.rcRequestChain"/>
- </soapActions>
- <attributes>
- <attribute type="global">temporaryObjectLocation</attribute>
- <attribute type="global">temporaryObjectLifetime</attribute>
- </attributes>
- </service>
|