12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <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="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="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">
- <properties>
- <property name='IEmailRetriever.impl' value='com.ibm.cognos.pdisp.delivery.PlanningEmailRetriever'/>
- <property name='ILinksProcessor.impl' value='com.ibm.cognos.pdisp.delivery.PlanningLinksProcessor'/>
- <property name='IAttachmentsProcessor.impl' value='com.ibm.cognos.pdisp.delivery.PlanningAttachmentsProcessor'/>
- </properties>
- </handler>
- <handler name="asyncChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="prepareConversationContext"/>
- <handler_ref name="validateRequestConversationContext"/>
- <handler_ref name="asyncDeliveryService"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="validateResponseConversationContext"/>
- </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"/>
- </soapActions>
- <attributes>
- <attribute>dsConnections</attribute>
- <attribute>dsPeakConnections</attribute>
- <attribute>dsCompressAttachmentLimit</attribute>
- <attribute>archiveLocationFileSchemeRoot</attribute>
- <attribute>dsMaximumEMailSize</attribute>
- </attributes>
- </service>
|