Hi @jezwn ,
You may try below xpath once,
/jcr:root/content/dam//element(*, dam:Asset)
[
((jcr:content/metadata/@custom:assetType = 'document' or jcr:content/metadata/@custom:assetType = 'image'))
and
(
not(jcr:content/@offtime)
or
(jcr:content/@offtime > xs:dateTime('2024-10-17T06:50...
Hi @Siva_Thanu_M_S ,
You can try either excluding them if not needed or import them explicitly.
References-
https://myaemlearnings.blogspot.com/2021/02/createbuild-and-install-osgi-bundle-of.html
https://stackoverflow.com/questions/66777995/awssdk-packages-are-not-resolved-in-aem-6-5
https://expe...
Hi @AliSyed1 ,
You may try below references, we can pass current selected pages and call the required servlet where workflow can be trigeered.
https://www.linkedin.com/pulse/aem-how-add-custom-button-siteshtml-render-based-paths-vikraman/
https://experienceleaguecommunities.adobe.com/t5/adobe-experi...
Hi @LyonMartin ,
EventHandler are fired asynchronously and hence orders are not maintained.
Also it doesn't notify if the event action completed successfully, as well as it doesn't guarantee completion.
Pre-processor have following advatages-
this is part of AEM replication api, and has dedicated ...
Hi @keehwan1,
You may try something like below
Map<String, String> queryMap = new HashMap<>();
queryMap.put("path", rootPath);
queryMap.put("p.limit", "-1");
queryMap.put("p.offset", "0");
queryMap.put("type", NT_PAGE);
queryMap.put("1_prop...
Hi,
Same curl cmd is working for me.
You may check logs for the exact error.
If you feels error is due to large number of asset, you may narrow down the path and try.
Thanks
Hi ,
Below format is working for me in local or you may try double quote as you are using variables
curl --location 'http://localhost:4502/bin/querybuilder.json?type=dam%3AAsset&path=%2F&path.self=false&p.limit=1000&p.offset=0' \
--header 'Authorization: Basic YWRtaW46YWRtaW4='
Thanks
Hi @_CL ,
Regarding question 5-
In general we do not reduce the time to live for css and js.
Clientlibs are cache more than 1 day or week as they are not changed after deployment.
Versioning of file (filename) and henced url get changed whenever some content (js/css) changed.
Also updated file name...