Portal, Express Beta Version 6.1
Operating systems: i5/OS, Linux,Windows |
The HTTP Basic Authentication Trust Association Interceptor has several configuration properties.
You can configure the following properties for the HTTP Basic Authentication Trust Association Interceptor. Notes:Every product name in the HTTP header field User-Agent of incoming requests is compared with each of the patterns specified for this parameter. If the TAI is enabled and the URL matches at least one of the patterns specified for the userAgentBlackList property, the TAI will not handle the request.
The default value is an asterisk ( * ); this default means that all patterns match, and consequently the TAI handles no requests at all.
You can specify the patterns with an asterisk ( * ) as a wild card character. You can also define the patterns as Java regular expressions. In this case set the property useRegExp (further below) to true.
The full path information of the URL of the incoming request is compared with each of the patterns specified for this parameter. Before comparing the URL to the patterns, the protocol, server, port, and query information is removed from the URL. If the TAI is enabled and the URL matches at least one of the patterns specified for the urlBlackList property, the TAI will not handle the request.
The default value is an asterisk ( * ); this default means that all patterns match, and consequently the TAI handles no requests at all.
Use the following syntax rules for specifying the patterns:If the TAI is enabled and the pattern specified for this property has at least one match and neither of the userAgentBlackList or the urlBlackList have a match, then the TAI handles the request.
The default is <your_pattern_here> ; this is not an actual value, but only a placeholder.
You can specify the patterns with an asterisk ( * ) as a wild card character. You can also define the patterns as Java regular expressions. In this case set the property useRegExp (further below) to true.
If the TAI is enabled and the pattern specified for this property has at least one match and neither of the userAgentBlackList or the urlBlackList have a match, then the TAI handles the request.
The default is <your_pattern_here> ; this is not an actual value, but only a placeholder.
Use the following syntax rules for specifying the patterns:If you want to represent an asterisk as an actual character for matches in the pattern instead of using it as a wildcard, prefix it with a backslash like this: \* . To represent the backslash as a character for matching, code it by using a double backslash: \\ .
Examples: