Current Request Attributes

 

+
Search Tips   |   Advanced Search

 

Use current Request Attributes to inspect request attributes which can be set on the current JSP. You must know the name of the request attribute to use it in a rule.

For example, the following code can be inserted into a JSP to set a request attribute:

<% request.setAttribute("user", userObject); %> where userObject is of any Object type

An example rule condition constructed to evaluate this example might be:

when current Request Attributes.user is equal to rob

All data types are supported.