-
Thanks David! I had a wrong tag under Else. This error is now fixed.
2004-12-21 16:52:33 UTC in JxBRE - Java Business Rules Engine
-
also, when I have <Else></Else> in the XML, I got the following error. Any idea why?
DOM Error:org.xml.sax.SAXParseException: The content of element type "Else" must match "(Set*,Rule*,Log*,Logic*,While*)*".
2004-12-21 15:54:12 UTC in JxBRE - Java Business Rules Engine
-
It just seems that the Do block in the nested Logic never got executed.. I will see if I can find meaning debug log for you.
2004-12-21 15:30:47 UTC in JxBRE - Java Business Rules Engine
-
Sean,
Thanks for the quick response! The relationship between <Conditon>s is implicitly AND, right? Anyway, your suggestion works for the example of <if((x="A"||x="B")&&(y="C")>. However, I am still having trouble making the nested conditions working. The stylized example would be
if(a=="A")
{
if(b=="B1")
{...
2004-12-20 22:15:08 UTC in JxBRE - Java Business Rules Engine
-
Hi,
I have a situation where we need to build more complex logic as follows.
if((x="A"||x="B")&&(y="C")
{
if(z="D")
{
do something
}
}
So, this also has nesting involved. I tried to build it off your example XMLs and don't know how to build the ORs and ANDs in one condition. Can someone provide an example for this kind of...
2004-12-17 23:59:59 UTC in JxBRE - Java Business Rules Engine