Defining action sets in the XML file

To define action sets in the XML file, all you need to do is create a new actionSet element within the root <logonRules> element. You can have as many action sets as you like. Look to the sections “description of available filters” and “description of available actions” in the documentation for more help with defining filters and actions in your action sets.

Example: defining a new action set (the DTD has been omitted for brevity).

69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<logonRules>
 
  <actionSet>
    <filterSet>
      <!-- filters go here -->
    </filterSet>
    <actions>
      <!-- actions go here -->
    </actions>
  </actionSet>
 
  <actionSet>
    <filterSet>
      <!-- filters go here -->
    </filterSet>
    <actions>
      <!-- actions go here -->
    </actions>
  </actionSet>
 
</logonRules>

Comments are closed.