delivery.xml.pla 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <service name="deliveryService" class="com.cognos.pogo.services.SoapActionHandlerService" loadPriority="200" logStartStop="false" registerInCM="true" CMdefaultName="DeliveryService">
  2. <prerequisites>
  3. <prerequisite disabledProperty="dlsIsEnabled"/>
  4. </prerequisites>
  5. <!-- ASYNC SERVICE -->
  6. <handlers>
  7. <handler name="prepareConversationContext" classname="com.cognos.pogo.handlers.tracking.PrepareConversationContextHandler"/>
  8. <handler name="validateRequestConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateRequestConversationContextHandler" validateProcessID="false" validateAffinityStrength="false" faultOnValidationError="false"/>
  9. <handler name="validateResponseConversationContext" classname="com.cognos.pogo.handlers.tracking.ValidateResponseConversationContextHandler" validateProcessID="false" validateAffinityStrength="false"/>
  10. <handler name="jsmReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="DeliveryService" serviceType="deliveryService" skip_on_fault="false"/>
  11. <handler name="asyncDeliveryService"
  12. classname="com.cognos.pogo.async.impl.AsyncHandler"
  13. threadBaseName="asyncDeliveryThread-"
  14. expiryCheckIntervalms="10000"
  15. connectionProperty="dsConnections"
  16. peakConnectionProperty="dsPeakConnections"
  17. abandonLimit="12"
  18. graceLimit="12"
  19. wrappedHandler="deliveryService.delivery_service"
  20. onCompletionHandler="deliveryService.jsmReporter"/>
  21. <handler name="delivery_service" classname="com.cognos.dls.service.DLSHandler" reportingHandler="deliveryService.jsmReporter">
  22. <properties>
  23. <property name='IEmailRetriever.impl' value='com.ibm.cognos.pdisp.delivery.PlanningEmailRetriever'/>
  24. <property name='ILinksProcessor.impl' value='com.ibm.cognos.pdisp.delivery.PlanningLinksProcessor'/>
  25. <property name='IAttachmentsProcessor.impl' value='com.ibm.cognos.pdisp.delivery.PlanningAttachmentsProcessor'/>
  26. </properties>
  27. </handler>
  28. <handler name="asyncChain" classname="com.cognos.pogo.handlers.logic.ChainHandler">
  29. <chain>
  30. <handler_ref name="pogo.auth_check"/>
  31. <handler_ref name="prepareConversationContext"/>
  32. <handler_ref name="validateRequestConversationContext"/>
  33. <handler_ref name="asyncDeliveryService"/>
  34. <handler_ref name="pogo.respond"/>
  35. <handler_ref name="validateResponseConversationContext"/>
  36. </chain>
  37. </handler>
  38. </handlers>
  39. <soapActions>
  40. <soapAction path="delivery" handler="deliveryService.asyncChain"/>
  41. <soapAction path="http://developer.cognos.com/schemas/deliveryService" handler="deliveryService.asyncChain"/>
  42. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1" handler="deliveryService.asyncChain"/>
  43. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.session" handler="deliveryService.asyncChain"/>
  44. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.absolute" handler="deliveryService.asyncChain"/>
  45. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.control" handler="deliveryService.asyncChain"/>
  46. <soapAction path="http://developer.cognos.com/schemas/deliveryService/1.server" handler="deliveryService.asyncChain"/>
  47. </soapActions>
  48. <attributes>
  49. <attribute>dsConnections</attribute>
  50. <attribute>dsPeakConnections</attribute>
  51. <attribute>dsCompressAttachmentLimit</attribute>
  52. <attribute>archiveLocationFileSchemeRoot</attribute>
  53. <attribute>dsMaximumEMailSize</attribute>
  54. </attributes>
  55. </service>