12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
-
- BI and PM: DLS
-
- (c) Copyright IBM Corp. 2003, 2013.
-
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
-
- -->
- <service name="deliveryService" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="200" logStartStop="false" registerInCM="true" CMdefaultName="DeliveryService">
- <prerequisites>
- <prerequisite disabledProperty="dlsIsEnabled"/>
- </prerequisites>
- <!-- ASYNC SERVICE -->
- <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="jsmReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="DeliveryService" serviceType="deliveryService" skip_on_fault="false"/>
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="deliveryService" skip_on_fault="false"/>
- <handler name="asyncDeliveryService" classname="com.cognos.pogo.async.impl.AsyncHandler" threadBaseName="asyncDeliveryThread-" expiryCheckIntervalms="10000" connectionProperty="dsConnections" peakConnectionProperty="dsPeakConnections" abandonLimit="12" graceLimit="12" wrappedHandler="deliveryService.delivery_service" onCompletionHandler="deliveryService.jsmReporter"/>
- <handler name="delivery_service" classname="com.cognos.dls.service.DLSHandler" reportingHandler="deliveryService.jsmReporter"/>
- <handler name="waitForAttachmentClose" classname="com.cognos.pogo.handlers.regulate.WaitForAttachmentCloseHandler" timeout="60000"/>
- <handler name="asyncChain" 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="asyncDeliveryService"/>
- <handler_ref name="bridge.response"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="validateResponseConversationContext"/>
- <handler_ref name="waitForAttachmentClose"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="delivery" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService/1" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.session" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.absolute" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.control" handler="deliveryService.asyncChain"/>
- <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.server" handler="deliveryService.asyncChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/" handler="deliveryService.asyncChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.session" handler="deliveryService.asyncChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.absolute" handler="deliveryService.asyncChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.control" handler="deliveryService.asyncChain"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.server" handler="deliveryService.asyncChain"/>
- </soapActions>
- <attributes>
- <attribute>dsConnections</attribute>
- <attribute>dsPeakConnections</attribute>
- <attribute>dsCompressAttachmentLimit</attribute>
- <attribute>archiveLocationFileSchemeRoot</attribute>
- <attribute>dsMaximumEMailSize</attribute>
- <attribute>advancedSettings</attribute>
- </attributes>
- </service>
|