delivery.xml 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: DLS
  5. (c) Copyright IBM Corp. 2003, 2013.
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <service name="deliveryService" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="200" logStartStop="false" registerInCM="true" CMdefaultName="DeliveryService">
  9. <prerequisites>
  10. <prerequisite disabledProperty="dlsIsEnabled"/>
  11. </prerequisites>
  12. <!-- ASYNC SERVICE -->
  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="jsmReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="DeliveryService" serviceType="deliveryService" skip_on_fault="false"/>
  19. <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="deliveryService" skip_on_fault="false"/>
  20. <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"/>
  21. <handler name="delivery_service" classname="com.cognos.dls.service.DLSHandler" reportingHandler="deliveryService.jsmReporter"/>
  22. <handler name="waitForAttachmentClose" classname="com.cognos.pogo.handlers.regulate.WaitForAttachmentCloseHandler" timeout="60000"/>
  23. <handler name="asyncChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  24. <chain>
  25. <handler_ref name="pogo.auth_check"/>
  26. <handler_ref name="prepareConversationContext"/>
  27. <handler_ref name="validateSOAP"/>
  28. <handler_ref name="validateRequestConversationContext"/>
  29. <handler_ref name="asyncDeliveryService"/>
  30. <handler_ref name="bridge.response"/>
  31. <handler_ref name="pogo.respond"/>
  32. <handler_ref name="validateResponseConversationContext"/>
  33. <handler_ref name="waitForAttachmentClose"/>
  34. </chain>
  35. </handler>
  36. </handlers>
  37. <soapActions>
  38. <soapAction path="delivery" handler="deliveryService.asyncChain"/>
  39. <soapAction path="http://developer.cognos.com/schemas/deliveryService" handler="deliveryService.asyncChain"/>
  40. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1" handler="deliveryService.asyncChain"/>
  41. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.session" handler="deliveryService.asyncChain"/>
  42. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.absolute" handler="deliveryService.asyncChain"/>
  43. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.control" handler="deliveryService.asyncChain"/>
  44. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.server" handler="deliveryService.asyncChain"/>
  45. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/" handler="deliveryService.asyncChain"/>
  46. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.session" handler="deliveryService.asyncChain"/>
  47. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.absolute" handler="deliveryService.asyncChain"/>
  48. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.control" handler="deliveryService.asyncChain"/>
  49. <soapAction path="http://www.ibm.com/xmlns/prod/cognos/deliveryService/*/.server" handler="deliveryService.asyncChain"/>
  50. </soapActions>
  51. <attributes>
  52. <attribute>dsConnections</attribute>
  53. <attribute>dsPeakConnections</attribute>
  54. <attribute>dsCompressAttachmentLimit</attribute>
  55. <attribute>archiveLocationFileSchemeRoot</attribute>
  56. <attribute>dsMaximumEMailSize</attribute>
  57. <attribute>advancedSettings</attribute>
  58. </attributes>
  59. </service>