XHTMLredirectXHTMLredirect
XHTML
Home > Books > NetKernel API and Services Reference > Accessor Listing > XHTML Utilities > XHTMLredirect

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:ext:xhtml

The XHTMLredirect accessor is exported by the urn:org:ten60:netkernel:ext:xhtml module. Import this module to gain access to the accessor.

Syntax

URI
active:XHTMLredirect

ArgumentRulesDescription
operatorMandatory canonical URI

Example Usage

DPML

<instr>
  <type>XHTMLredirect</type>
  <operator>
    <uri>go/over/here.html</uri>
  </operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:XHTMLredirect");
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The XHTMLredirect accessor is used to generate an XHTML redirect page to the canonical URI supplied as the operand.

For example...

<instr>
  <type>XHTMLredirect</type>
  <operator>
    <uri>http://www.1060research.com</uri>
  </operator>
  <target>this:response</target>
</instr>

Produces...

<html>
  <head>
    <meta content="0; URL=http://www.1060research.com" http-equiv="refresh" />
  </head>
</html>

You may prefer to use the lower-level HTTPRedirect.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.