Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/QueueWorker/Tasks

< SMILA‎ | Documentation‎ | QueueWorker
Revision as of 06:04, 25 November 2008 by Unnamed Poltroon (Talk)

Tasks

Process task

  <Process Workflow="AddPipeline"/>

Executes BPEL Pipeline.


Send task

 <Send BrokerId="broker1" Queue="SMILA.connectivity"  RecordFilter="filterName">
   <SetProperty Name="doSomething">some value</SetProperty>
   <SetProperty Name="doSomethingElse">some other value</SetProperty>
 </Send>

This task is used for sending Record to JMS queue.

Broker connection with correspondent BrokerId should be specified in Broker Connection Service configuration.

RecordFilter attribute used to specify record filter applied to Record before sending.

"SetProperty" tags used for configuring additional JMS Message properties. It may be useful for the next step processing by Listener service for selecting "Rule" by Condition tag value.

Back to the top