Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This section will capture some of the more advanced capabilities and use cases of PGE.

FAQ

Q. How do I add multiple crawler actions to the PGE?

A. The tasks.xml file in the Workflow configuration contains a property called 'PCS_ActionsIds'. To add 1 action, then set the property like so,

Code Block

<property name="PCS_ActionsIds" value="MyCrawlerActionId"/>_

where MyCrawlerActionId is the crawler action ID name that you'd like to run in the PGE.

To add multiple crawler actions, do the following:

  1. Add a property in the tasks.xml file, where the name can be whatever you want it to be. We'll use ActionsIds,
Code Block

<property name="ActionsIds" value="MyCrawlerActionId1,MyCrawlerActionId2"/>

Note that it must be comma-separated with no spaces in-between.

#In the PGE configuration file, add a PCS_ActionsIds key under the customMetadata tag and reference the property name that you had just set in the tasks.xml file (ActionsIds in this case),

Code Block

<customMetadata>
...
   <metadata key="PCS_ActionsIds" val="[ActionsIds]"/>
...