sourcesource
Build and issue a source request with a set of dynamic arguments
Home > Books > NetKernel API and Services Reference > Accessor Listing > Utility and System Accessors > source

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


Module

urn:org:ten60:netkernel:ext:sys

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

Syntax

URI
active:source

ArgumentRulesDescription
uriMandatory the base URI of the service
arg1Optional An argument to append to the service's URI
argNOptional An argument to append to the service's URI

Example Usage

DPML

<instr>
  <type>source</type>
  <uri>/myservice</uri>
  <myargument>mydoc.xml</myargument>
  <target>var:result</target>
</instr>

NetKernel Foundation API

The source accessor is provided for use with the DMPL language. It is more efficient to use the following NKF method with scripting languages:

INKFBasicHelper.createSubRequest()issue subrequest

Purpose

The source accessor allows a call to be made to an arbitrary URI specified in the uri argument. Additional arguments are added as named arguments on the active URI sub-request where the argument name is the same as the element name. The assembled active URI request is issued and the result returned.

Example

Suppose we wish to call an interface "ffcpl:/services/wordcount" which returns the word count of a document supplied as a named argument "doc".

<instr>
  <type>source</type>
  <uri>ffcpl:/services/wordcount</uri>
  <doc>mydoc.xml</doc>
  <target>var:result</target>
</instr>

Creates and issues the request...

ffcpl:/services/[email protected]

Multiple arguments are supported so for example...

<instr>
  <type>source</type>
  <uri>ffcpl:/services/vet</uri>
  <dog>hound.xml</dog>
  <horse>equine.xml</horse>
  <target>var:result</target>
</instr>

Creates and requests...

ffcpl:/services/[email protected][email protected]

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