12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: JOBS
- (C) Copyright IBM Corp. 2005, 2013
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="jobService" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="200" logStartStop="false" registerInCM="true" CMdefaultName="JobService">
- <!-- prereequisites i.e. disabled service in config?-->
- <prerequisites>
- <prerequisite disabledProperty="jsIsEnabled"/>
- </prerequisites>
- <handlers>
- <handler name="validateSOAP" classname="com.cognos.jsmcommon.service.ValidateSOAPHandler"/>
- <handler name="prepareConversationContext" classname="com.cognos.pogo.handlers.tracking.PrepareConversationContextHandler"/>
- <handler name="validateRequestConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateRequestConversationContextHandler" validateProcessID="false" validateAffinityStrength="false" faultOnValidationError="false"/>
- <handler name="validateResponseConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateResponseConversationContextHandler" validateProcessID="false" validateAffinityStrength="false"/>
- <handler name="asvReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="jobService" serviceType="jobService" skip_on_fault="false"/>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="jobService" skip_on_fault="false"/>
- <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"/>
- <handler name="jobServiceHandler" classname="com.cognos.js.JobServiceHandler"/>
- <handler name="jobChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="prepareConversationContext"/>
- <handler_ref name="validateSOAP"/>
- <handler_ref name="validateRequestConversationContext"/>
- <handler_ref name="asyncJobServiceHandler"/>
- <handler_ref name="bridge.response"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="validateResponseConversationContext"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <!-- the jobService soap action is for the old code - see jsds.xml -->
- <!--<soapAction path="jobService" handler="jobService.jobChainHandler"/>-->
- <soapAction path="http://developer.cognos.com/schemas/jobService" handler="jobService.jobChainHandler"/>
- <soapAction path="http://developer.cognos.com/schemas/jobService/1" handler="jobService.jobChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/" handler="jobService.jobChainHandler"/>
- <soapAction path="http://developer.cognos.com/schemas/jobService/1.session" handler="jobService.jobChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.session" handler="jobService.jobChainHandler"/>
- <soapAction path="http://developer.cognos.com/schemas/jobService/1.absolute" handler="jobService.jobChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.absolute" handler="jobService.jobChainHandler"/>
- <soapAction path="http://developer.cognos.com/schemas/jobService/1.control" handler="jobService.jobChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.control" handler="jobService.jobChainHandler"/>
- <soapAction path="http://developer.cognos.com/schemas/jobService/1.server" handler="jobService.jobChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/jobService/*/.server" handler="jobService.jobChainHandler"/>
- </soapActions>
- <attributes>
- <attribute>jsConnections</attribute>
- <attribute>jsPeakConnections</attribute>
- <attribute>advancedSettings</attribute>
- </attributes>
- </service>
|