I am exploring usage of SlingInternalRequest on AEM as a Cloud Service and have referenced the below articles for implementation - https://sling.apache.org/documentation/bundles/servlet-helpers.html https://kiransg.com/tag/slinginternalrequest/ https://techrevel.blog/2025/07/08/slinginternalrequest-...
Hi Everyone,I have the following code in an AEM component:<sly data-sly-test="${properties.showPinterestSave == 'true'}">It works fine on most pages, but in our published environments, it's not behaving as expected on some pages. I checked in CRX and the showPinterestSave property seems correctly se...
Hi Community,I'm setting up Sling Content Distribution (SCD) in AEM as a Cloud Service to replicate content from Author to Publish using a custom agent and Java code.Here’s the agent configuration (com.adobe.granite.distribution.core.impl.AgentConfiguration-myagent.config): name="myagent"enabled=B"t...
Greetings,For security reasons, our client has asked us to add the header "Access-Control-Allow-Origin" with a list of our sites domains.But i specifically was wondering about one particular aspect of api intengration.We use AEMAACS So in our case, we call an internal sevlet, from which we then call...
Hi TeamI have a requirement to integration Amazon Kendra Search solution with AEM as a cloud. I have seen the documentation on Amazon however would want to know inputs if anyone integrated recently. Basically to start with I want to do POC on AEM local cloud sdk. Any pointers would be really helpful...
To whom it may concern, When I clicked on the AEM installer, I received this error message:"It seems that your Adobe ID is not linked with your Adobe Experience Cloud solution accounts" I cannot download any of the AEM installers. Can you help me to solve this matter? Warm regards,Gisela
Hi everyone,I am checking https://status.adobe.com/ under Experience Cloud - Adobe Experience Manager, and everything shows as green, meaning “all services operating normally”However, our team is noticing sluggish performance and occasional downtime over the past few days. We have confirmed this isn...
I have an EDS website with content edited in Google Drive. Could I edit the content of this website with Universal Editor instead of editing the Google Docx file?I looked for a tutorial or a step-by-step guide to use Universal Editor but there is none of this. Could you please help?
Hello Team, I have an AEM Content fragment extension project. Till now, manually I am deploying the project to differenet Adobe IO workspace. Now, I wanted to use jenkin deployment.Previously team has created NodeJS micro project, that is deployed to Adobe IO workspace using jenkin deployment. Looks...
Hi,I have this logic to read the cookiesOptional<Cookie[]> cookies = Optional.ofNullable(request.getCookies());if (cookies.isPresent()) { return Arrays.stream(cookies.get()).filter(cookie -> cookie.getName().equals(cookieName)) .map(cookie -> cookie.getValue()).findFirst();}return Opti...