Moduleurn:org:ten60:netkernel:ext:xrl
The
resolveXRLURI
accessor is exported by the urn:org:ten60:netkernel:ext:xrl module.
Import this module to gain access to the accessor.
Syntax
Argument | Rules | Description | operand | Mandatory | the xrl: scheme uri | operator | Optional | the links document |
Example UsageDPML<seq> <instr> <comment>lookup mylink</comment> <type>resolveXRLURI</type> <operator>links.xml</operator> <operand>xrl:mylink</operand> <target>var:uri</target> </instr> <instr> <comment>create redirect to this address</comment> <type>HTTPRedirect</type> <operator>var:uri</operator> <target>this:response</target> </instr> </seq> NetKernel Foundation API
main()
{ // lookup mylink
req=context.createSubRequest("active:resolveXRLURI");
req.addArgument("operand","xrl:mylink");
uri=context.issueSubRequest(req);
// create redirect to this address
req=context.createSubRequest("active:HTTPRedirect");
req.addArgument("operator",uri);
redirect=context.issueSubRequest(req);
context.createResponseFrom(redirect);
}
Purpose |