jobService.xml 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: JOBS
  5. (C) Copyright IBM Corp. 2005, 2013
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <service name="jobService" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="200" logStartStop="false" registerInCM="true" CMdefaultName="JobService">
  9. <!-- prereequisites i.e. disabled service in config?-->
  10. <prerequisites>
  11. <prerequisite disabledProperty="jsIsEnabled"/>
  12. </prerequisites>
  13. <handlers>
  14. <handler name="validateSOAP" classname="com.cognos.jsmcommon.service.ValidateSOAPHandler"/>
  15. <handler name="prepareConversationContext" classname="com.cognos.pogo.handlers.tracking.PrepareConversationContextHandler"/>
  16. <handler name="validateRequestConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateRequestConversationContextHandler" validateProcessID="false" validateAffinityStrength="false" faultOnValidationError="false"/>
  17. <handler name="validateResponseConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateResponseConversationContextHandler" validateProcessID="false" validateAffinityStrength="false"/>
  18. <handler name="asvReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="jobService" serviceType="jobService" skip_on_fault="false"/>
  19. <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="jobService" skip_on_fault="false"/>
  20. <handler name="asyncJobServiceHandler" classname="com.cognos.pogo.async.impl.AsyncHandler" threadBaseName="asyncJobServiceBaseThread-" expiryCheckIntervalms="10000" connectionProperty="jsConnections" peakConnectionProperty="jsPeakConnections" abandonLimit="12" graceLimit="12" wrappedHandler="jobService.jobServiceHandler" onCompletionHandler="jobService.asvReporter"/>
  21. <handler name="jobServiceHandler" classname="com.cognos.js.JobServiceHandler"/>
  22. <handler name="jobChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  23. <chain>
  24. <handler_ref name="pogo.auth_check"/>
  25. <handler_ref name="prepareConversationContext"/>
  26. <handler_ref name="validateSOAP"/>
  27. <handler_ref name="validateRequestConversationContext"/>
  28. <handler_ref name="asyncJobServiceHandler"/>
  29. <handler_ref name="bridge.response"/>
  30. <handler_ref name="pogo.respond"/>
  31. <handler_ref name="validateResponseConversationContext"/>
  32. </chain>
  33. </handler>
  34. </handlers>
  35. <soapActions>
  36. <!-- the jobService soap action is for the old code - see jsds.xml -->
  37. <!--<soapAction path="jobService" handler="jobService.jobChainHandler"/>-->
  38. <soapAction path="http://developer.cognos.com/schemas/jobService" handler="jobService.jobChainHandler"/>
  39. <soapAction path="http://developer.cognos.com/schemas/jobService/1" handler="jobService.jobChainHandler"/>
  40. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/" handler="jobService.jobChainHandler"/>
  41. <soapAction path="http://developer.cognos.com/schemas/jobService/1.session" handler="jobService.jobChainHandler"/>
  42. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.session" handler="jobService.jobChainHandler"/>
  43. <soapAction path="http://developer.cognos.com/schemas/jobService/1.absolute" handler="jobService.jobChainHandler"/>
  44. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.absolute" handler="jobService.jobChainHandler"/>
  45. <soapAction path="http://developer.cognos.com/schemas/jobService/1.control" handler="jobService.jobChainHandler"/>
  46. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.control" handler="jobService.jobChainHandler"/>
  47. <soapAction path="http://developer.cognos.com/schemas/jobService/1.server" handler="jobService.jobChainHandler"/>
  48. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.server" handler="jobService.jobChainHandler"/>
  49. </soapActions>
  50. <attributes>
  51. <attribute>jsConnections</attribute>
  52. <attribute>jsPeakConnections</attribute>
  53. <attribute>advancedSettings</attribute>
  54. </attributes>
  55. </service>