Is it possible to configure a content filter in the Routing Service with multiple parameters ?
For example this fragment will do one parameter, but how can multiples be done ?
<content_filter>
<parameter>0</parameter>
<expression>(machineId >= %0)</expression>
</content_filter>
Thanks
Nico.
Ok, this will do it:
<content_filter>
<parameter>1111</parameter>
<parameter>3333</parameter>
<expression>(machineId >= %0) AND (machineId <= %1)</expression>
</content_filter>