tracetrace
Attempts the resolution of a resource within the context of a module and captures the resolution process for purposes of debugging.
Home > Books > NetKernel API and Services Reference > Accessor Listing > Kernel Management and Development APIs > trace

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


Module

urn:org:ten60:netkernel:ext:kernel

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

Syntax

URI
active:trace

ArgumentRulesDescription
operandMandatory the URI of a resource to trace resolution of.
operatorOptional override default behaviour

Example Usage

DPML

<instr>
  <type>trace</type>
  <operand>index.html</operand>
  <operator>
    <trace>
      <module>urn:mymodule</module>
      <inheritSuper />
    </trace>
  </operator>
  <target>var:result</target>
</instr>

NetKernel Foundation API

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

Purpose

Description

Used to perform a resource resolution and report the resolution process. It is useful to find out what is happening when a resource isn't being resolved as expected or when it is not being resolved at all. The result is a line by line listing of the steps taken in resolving the resource until eventual success of failure.

Operator

The operator can optionally contain two elements:

  • module specify a module to start resolution at. If not specified the module that called the trace instruction is used.
  • inheritSuper if specified then the super stack of the request to the instruction is used allowing searching of any parent modules in context. The request is considered an internal request to the module and is not rewritten. If inheritSuper is not specified the starting location is treated as a fulcrum and the operator URI is rewritten as it enters the module.

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