systemservice.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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 2017
  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="systemService" registerInCM="true" CMdefaultName="SystemService" class="com.cognos.pogo.services.SoapActionHandlerService" logStartStop="true" stoppable="false">
  9. <handlers>
  10. <handler name="systemServiceChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  11. <chain>
  12. <handler_ref name="pogo.auth_check"/>
  13. <handler_ref name="systemServiceHandler"/>
  14. <handler_ref name="systemServiceReporter"/>
  15. <handler_ref name="pogo.respond"/>
  16. </chain>
  17. </handler>
  18. <handler name="systemServiceHandler" classname="com.cognos.pogo.handlers.systemservice.SystemServiceHandler" reportingHandler="systemService.systemServiceReporter"/>
  19. <handler name="systemServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="SystemService" serviceType="systemService" skip_on_fault="false" setStatus="started"/>
  20. <handler name="LocalServerConnectionHandler" classname="com.cognos.pogo.http.inprocess.config.LocalServerConnectionHandler"/>
  21. </handlers>
  22. <soapActions>
  23. <soapAction path="systemService" handler="systemService.systemServiceChain"/>
  24. <soapAction path="http://developer.cognos.com/schemas/bibus/3#systemService" handler="systemService.systemServiceChain"/>
  25. <soapAction path="http://developer.cognos.com/schemas/systemService/1" handler="systemService.systemServiceChain"/>
  26. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/systemService/*/" handler="systemService.systemServiceChain"/>
  27. </soapActions>
  28. <attributes>
  29. <attribute>supportedCurrencies</attribute>
  30. <attribute>defaultFont</attribute>
  31. <attribute>supportedFonts</attribute>
  32. </attributes>
  33. </service>