4 Replies Latest reply on Jan 28, 2010 3:44 PM by sebastian.s

    Does jpdl support boolean operations

    xandrewrampulla

      I was trying to do something very simple.  I wanted one of the conditions in my workflow to be a logical and of a couple of things.  When I put this in, the workflow seemed to abort, but I can't tell why.  Does anything look wrong with the following?  And if not, does anyone have any suggestions on the best way to turn on logging to find the problem?

       

          <decision name="useX">
              <transition name="IsXAllocated" to="IsXAllocated">
                  <condition>#{(true==true) && (false==false)}</condition>
              </transition>
              <transition to="BuildResponse" name="BuildResponse"></transition>
          </decision>

       

      Thanks