cancel
Showing results for 
Search instead for 
Did you mean: 

Exclusive Gateway split

arno1
Champ in-the-making
Champ in-the-making
Hi,
I designed a process with the eclipse designer and want to check a condition (true or false).
here's the code of the form where I should get my value to check:

<h1>Handle device request</h1>
<p>
${employee} has requested following device: ${kind}
</p>
<br/><br/>
Do you approve this?
   <select name="dev_approved">
      <option value="true">Yes</option>
      <option value="false">No</option>
   </select>
   <input type="hidden" name="dev_approved" value="Boolean" />

in the two arms of the exclusive gateway i'd like to check wheter the dev_approved condition is true or false
therefore I added following code to the condition section (main config in properties) of the flow (arm):
${dev_approved}==true

but when the process comes to this place there's an exception which says: "03060008 Wrapped Exception (with status template): Unknown property used in expression"

so I don't really know where the mistake is, because i let "dev_approved" choose and then I want to check "dev_approved" in the both flows which are outgoing of my exclusive gateway.
1 REPLY 1

jbarrez
Star Contributor
Star Contributor
Note that your expression must be ${dev_approved == true}

Is your form attached to a usertask that is prior to the exclusive gateway?