Controlling Execution Order

In some cases you may need to control the order in which transaction filters are executed. Although there is no explicit mechanism for doing this, the filters are executed in alphabetic order (sorted by filterName), so you can actually control execution order by naming your filters carefully. The delivered system includes some built-in transaction filters, so you could (for example), ensure that your filters are executed after the built-in filters, and in the required order by adding prefixes to their names as follows:

XX.01.MyWordCountFilter
XX.02.MyNextFilter
...

and so on.