Details
-
Bug
-
Status: Closed
-
Normal
-
Resolution: Fixed
-
None
-
Flagged
Description
Some facets will give AccessDenied exception, scan should only be done within content tree, so:
protected String getFacNavQueryXPath() { return "//element(*, " + FacNavNodeType.NT_FACETNAVIGATION + ')'; }
should be:
protected String getFacNavQueryXPath() { return "content//element(*, " + FacNavNodeType.NT_FACETNAVIGATION + ')'; }