repositoryservice.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: cm
  4. (C) Copyright IBM Corp. 2010, 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="repositoryService" class="com.cognos.pogo.services.SoapActionHandlerService" registerInCM="true" CMdefaultName="RepositoryService" logStartStop="true">
  8. <prerequisites>
  9. <prerequisite disabledProperty="repoIsEnabled"/>
  10. </prerequisites>
  11. <handlers>
  12. <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="repositoryService" skip_on_fault="false"/>
  13. <handler name="repositoryReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="repositoryService" serviceType="repositoryService" skip_on_fault="false"/>
  14. <handler name="repositoryHandler" classname="com.ibm.cognos.cm.repositoryService.RepositoryHandler" reportingHandler="repositoryService.repositoryReporter"/>
  15. <handler name="repositoryRESTChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  16. <chain>
  17. <handler_ref name="pogo.auth_check"/>
  18. <handler_ref name="repositoryService.repositoryHandler" skip_on_fault="false"/>
  19. <handler_ref name="pogo.respond" skip_on_fault="false"/>
  20. </chain>
  21. </handler>
  22. <handler name="remoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
  23. <service name="repositoryService">
  24. <forwarding delayBetweenAttempts="0" maxAttempts="1" retryOnNoProcess="false" preferLocal="true"/>
  25. <soapAction>repository</soapAction>
  26. </service>
  27. </handler>
  28. </handlers>
  29. <soapActions>
  30. <soapAction path="repository" handler="repositoryService.repositoryRESTChainHandler"/>
  31. <soapAction path="repository.server" handler="repositoryService.repositoryRESTChainHandler"/>
  32. </soapActions>
  33. <attributes>
  34. <attribute>reposNumObjMem</attribute>
  35. <attribute>reposNumObjDisk</attribute>
  36. <attribute>reposCacheObjTTL</attribute>
  37. <attribute type="global">windowsRepositoryURI</attribute>
  38. <attribute type="global">unixRepositoryURI</attribute>
  39. </attributes>
  40. </service>