On Tue, Jan 27, 2009 at 5:06 PM, DaVinci <[email protected]> wrote:
>
> Thank you very much. I thought that Ruote engine could guess which
> participant can begin a process looking at definition. Perhaps I have
> some misconception of asociations participant <-> user.

Hi David,

it's hard for the engine to figure out which participant is the first,
especially when the process starts with a concurrence :

    concurrence do
      participant :ref => 'alpha'
      participant :ref => 'bravo'
    end

or when the first participant is some kind of automated participant
which decides who's next :
(see this old post about decision tables :
http://jmettraux.wordpress.com/2007/10/12/decision-accumulation/)

    sequence do
      participant :ref => 'determine_agent'
        # an automated participant which chooses which human agent
will handle the dossier
      participant :ref => '${f:agent}'
        # the actual 'human'
    end

There is no concept of "user" in the engine itself. This concept is
added by the layers wrapped aroung / leveraging the engine.


thanks to Torsten for his explanations, great to see how others are
integrating Ruote in their systems,

best regards.

-- 
John Mettraux   -   http://jmettraux.wordpress.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ruote (OpenWFEru) users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/openwferu-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to