Hello, I am trying to router a custom message using the content of one of its property, but this property is a List. ¿How I can do it? The rule could be something like this
<rule name="">
  <constraint name="msgClass" value="Test.TestMessage"></constraint>
    <when condition="Document.myList.GetAt(1).property1="AA"">
      <send transform="" target="DummyOperation"></send>
      <return></return>
    </when>
</rule>
But this rule doesn't compile. TestClass is a simple Request Class like this:
Class Test.TestMessage Extends Ens.Request
{
Property myList As %ListOfObjects;
}
¿Any help?