An interceptor script block may invoke another interceptor component.

The current interceptor is suspended while the invoked interceptor is evaluated. If the invoked interceptor completes normally, evaluation of the current interceptor continues. If the invoked interceptor is halted, the current interceptor is also immediately halted with the same halt response.

An interceptor component is invoked using an <invoke-interceptor> element and has the following possible attribute.

Type Name Description Optional?

Attribute

interceptor

The interceptor component to be invoked. Must refer to an interceptor component defined in the SIS (using an interceptor reference)

NO

Example

Below is an example of an interceptor that invokes another interceptor extension component.

VIA diagram

interceptor

Script XML

<script>
    ...
    <invoke-interceptor interceptor="Interceptor1"/>
    ...
</script>
Previous page Next page