The groovy accessor executes Groovy
language scripts.
The operator specifies the resource to be executed as a program.
The script may either be a plain/text script or
may be encapsulated in an XML document with the script specified as the text of the root element.
When using XML it is strongly advisable to enclose your script inside a CDATA section, for example:
<script><![CDATA[ ...your script .. ]]></script>
Script Context
When executed, each script is provided an instance
of the INKFConvenienceHelper
class as the local
variable context.
The context variable has two purposes.
It supports introspection of the request which initiated the script
and it allows sub-requests to be issued.
For more details see the NKF Reference Guide.
Once a response object is created:
response=context.createResponseFrom(...);
it will be returned via the context when the script exits.
Parameters
Parameters can be passed to a script using named arguments.
Argument values are available within the script through the
context
using the this:param URI address space convention.
For example if the groovy accessor is requested with...
active:[email protected][email protected]
The myargument parameter can be obtained inside the script
using the context and the argument URI "this:param:myargument".
context.source("this:param:myargument")
Classpath
A groovy script inherits the classpath of the execution context. The order for locating a class is as
follows:
- The ext-script module
- The superstack back to the module where the groovy accessor was invoked
- The libraries and imports of the module originating the script execution request.
- The NetKernel core classes
- The Java VM classpath
A Java class can be imported into a script with a regular Java import statement:
import java.util.Random;
Example
This example shows a Groovy script performing an XSLT transformation,
logging the result and returning the result as the response:
req = context.createSubRequest();
req.setURI("active:xslt");
uris = [
"operator" : "examples/resources/act_to_html.xsl",
"operand" : "examples/resources/lear.xml"
]
uris.each { | key, value | req.addArgument(key,value) }
rep = context.issueSubRequest(req);
resp = context.createResponseFrom(rep);