Hi All, Is there any alternative to detect run-mode of instance in AEM as cloud service as slingSettingsService shows as deprecated? The use case is to execute code only on author or publish instances but not both. Thanks,Ram
Hi All, Is there a possibility of seeing the additional flags that used to be a part of tree activation in AEM as cloud? Like activate only modified/activated pages or ignore deactivated pages with Add Tree option while triggering Sling Distribution? Thanks,Ram
Hi @ArchanaVijayakumar007 , As per the HTL docs here, Internalization translates the string to the language of the current source (default is same language as content and can be overridden if needed), using the current dictionary. If no translation is found, the original string is used. Thanks,Ram
Hi @pradeepd1320668 , Corrected my reply. As Ritesh mentioned earlier, Timeout is the property that you should be looking for. DispatcherKeepAliveTimeout is for requests to be kept open before sending in new ones. Thanks,Ram
Hi All, As AEM as a Cloud Service is based on Sling Content Distribution mechanism, are there any references on how to create a custom event handler that can capture the content distribution event and whether it was an ADD or a DELETE that was triggered? I am going through the sling documentation bu...
Hi @vivianseba , Some of these rules can still be bypassed by putting multiple slashes in the URL. As per Adobe documentation: In Dispatcher versions later than 4.2.0, you can include POSIX Extended Regular Expressions in your filter patterns. You might want to try something similar to the below rul...
We recently encountered this issue while trying to fix repository inconsistency. Since we were getting 503 error (Authentication support missing) after reverting to last healthy revision, we restored the AEM instance to the backup created before the operation. After this backup was restored, we can ...
How can we pass a list from HTL to a sling model?I need a nested list to be converted into JsonArray format. <div data-sly-list="${values}"> <h1>${item.title}</h1> <p>${item.description}</p></div>Now I want the same thing as a json string from ${values}:[{"title":"test1", "description":"desc...