Purpose
The mapper
accessor is used to map an "external" request
to an internal service using a link file. For more details of the
link file format see the XRL guide.
The operand URI of the incoming request is used to match the
external URI of a link in the links document. The internal service is then determined which
can either be a direct lookup or via a chain of named xrl: links.
Any additional arguments on the request
are passed through unchanged to the internal request if they match allowed arguments as specified in
the args element in the link file entry.
Finally the request is issued on to the internal service.
If an operand path cannot be found the mapper attempts to resolve
the link xrl:404. This is useful for generating a user friendly error page.
It passes a parameter doc of the form:
<error>
<page>operand_path</page>
</error>
If the link xrl:404 cannot be found an exception is thrown by the
accessor.
If an error occurs in requesting an internal uri the mapper
attempts to resolve the link xrl:500 and passes a parameter doc of
the form:
<error>
<page>operand_path</page>
<ex>netkernel_exception_fragment...</ex>
</error>
If the link xrl:500 cannot be found an unformatted raw exception is thrown by the
accessor.