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 05:57, 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">really do something</SetProperty>
 </Send>

Send 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 to queue. "SetProperty" tag used for setting additional properties to JMS Message used for storing Record in queue. It may be useful for next processing by Listener service for selection "Rule" with Condition tag.

Back to the top