feedForEachReplacefeedForEachReplace
Calls a processing service for each feed-entry and returns a new feed from the responses.
Home > Books > NetKernel API and Services Reference > Accessor Listing > PiNKY > feedForEachReplace

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


Module

urn:org:pinkypipes:mod:pinky

The feedForEachReplace accessor is exported by the urn:org:pinkypipes:mod:pinky module. Import this module to gain access to the accessor.

Syntax

URI
active:feedForEachReplace

ArgumentRulesDescription
feedMandatory A feed resource
processuriMandatory Entry processing active URI

Example Usage

DPML

<instr>
  <type>feedForEachReplace</type>
  <feed>somefeed.xml</feed>
  <processuri>active:beanshell+operator@ffcpl:/path/myEntryProcessScript.bsh</processuri>
  <target>var:feed-with-replacement-entries</target>
</instr>

NetKernel Foundation API

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

Purpose

The feedForEachReplace accessor calls a process URI for-each feed entry and replaces that entry with the result from the sub-request.

The processuri argument is the active URI request to be invoked for each entry. The processuri service receives the entry to be processed as an argument entry.

Example

For example if a feedForEachReplace is given processuri, "active:beanshell+operator@ffcpl:/path/proc.bsh" it will call

active:beanshell+operator@ffcpl:/path/proc.bsh+entry@[entry to be processed]

Note: the implementation for the processuri service must return an IAspectEntry resource.

For more details see the PiNKY guide.

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