12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cm
- (C) Copyright IBM Corp. 2010, 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="repositoryService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="true" CMdefaultName="RepositoryService" logStartStop="true">
- <prerequisites>
- <prerequisite disabledProperty="repoIsEnabled"/>
- </prerequisites>
- <handlers>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="repositoryService" skip_on_fault="false"/>
- <handler name="repositoryReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="repositoryService" serviceType="repositoryService" skip_on_fault="false"/>
- <handler name="repositoryHandler" classname="com.ibm.cognos.cm.repositoryService.RepositoryHandler" reportingHandler="repositoryService.repositoryReporter"/>
- <handler name="repositoryRESTChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="repositoryService.repositoryHandler" skip_on_fault="false"/>
- <handler_ref name="pogo.respond" skip_on_fault="false"/>
- </chain>
- </handler>
- <handler name="remoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
- <service name="repositoryService">
- <forwarding delayBetweenAttempts="0" maxAttempts="1" retryOnNoProcess="false" preferLocal="true"/>
- <soapAction>repository</soapAction>
- </service>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="repository" handler="repositoryService.repositoryRESTChainHandler"/>
- <soapAction path="repository.server" handler="repositoryService.repositoryRESTChainHandler"/>
- </soapActions>
- <attributes>
- <attribute>reposNumObjMem</attribute>
- <attribute>reposNumObjDisk</attribute>
- <attribute>reposCacheObjTTL</attribute>
- <attribute type="global">windowsRepositoryURI</attribute>
- <attribute type="global">unixRepositoryURI</attribute>
- </attributes>
- </service>
|