Adjusting the replication agent is ineffective because it is essential for the post to function correctly. Specifically, the header "CQ-Handle" must include the deepest page (you can refer to this documentation for clarification) among those to be invalidated. If this condition is not met, the resou...
Never tried but it should be achievable using the ReportExecutor API provided by ACS AEM Commons.1. First, access the report configurationReports are stored under /var/acs-commons/reports. Retrieve the report configuration resource (e.g., /var/acs-commons/reports/my-report/config).Resource reportCon...
If you need to proceed with the automated approach, it's not too complicated. You can create a workflow that performs the following actions: - Find live copies of target page- First deactivate and delete them- Finally, deactivate and delete the target page Here is a code sample to retrieve live copy...
hi @Vishal_Jain03, ACS AEM Tools is accessible through the Maven public repository, allowing you to utilize the artifactId filevault-package-maven-plugin for embedding. You can refer to AEM Core Components for an example on how to do it: here Sample:<plugin>
<groupId>org.apache.jackr...
The Interactive Images feature, which allows authors to drag and drop “shoppable” hotspots on images, is primarily documented for AEM Assets and Dynamic Media and is available in AEM 6.5. It is not exclusive to AEM as a Cloud Service; you can implement similar functionality in local/on-premise AEM S...
I think the dispatcher access log can be helpful; you can extract the URL of the requested resource and its referrer. Since this log message has a fixed format, it's easy to isolate those specific fields while ignoring the others. You could think of the log content as if it were in CSV format, with ...
hi @veerareddyc1015, you can force the behaviour into the dispatcher with a POST callPOST /dispatcher/invalidate.cache HTTP/1.1
CQ-Action: Activate
`Content-Type: text/plain
CQ-Handle: path-pattern
Content-Length: numchars in bodypage_path0
page_path1
...
page_pathnas explained here.You can set up ...
The ClassNotFoundException for SEOModel in your AEM CaaS SDK environment typically indicates deployment or class visibility issues. 1) Verify Bundle DeploymentCheck /system/console/bundles to confirm:Your core bundle (containing SEOModel) is Active.No unresolved dependencies or import errors exist.I...
As @anupampat said, until the unit coverage threshold is satisfied, the pipeline will fail, and manual action will always be needed to override the result and allow the pipeline to continue its execution.