Hi All,
I am trying to evaluate two condition in simple expression tag with
AND/and/&& operator , but getting compile and runtime error for all ,
*Case 1*:
<simple>${header.id} == '123' && ${header.name} == 'Test'</simple>
Getting compile time issue "*the entity name must immediately follow the
'&&;' in the entity reference*"
Case 2:
<simple>${header.id} == '123' *AND* ${header.name} == 'Test'</simple>
Or like below
<simple>${header.id} == '123' *and* ${header.name} == 'Test'</simple>
Getting runtime error as *Unexpected token A*
Could you please help on this and help with the correct way to use. I
double checked the space around the operators as well.