Posts

Showing posts from January, 2023

How to read checkbox values from the HTML form data in AEM | AEM Servlet

  Please navigate to my linked blog link below. How to read checkbox values from the HTML form data in AEM | AEM Servlet

Expose AEM index as json

  You can also extract the indexes in your system in JSON format. In order to do this, you need to access  http://localhost:4502/oak:index.tidy.-1.json

Advances of SPA in AEM

 Advantages of  SPA in AEM High Performance Mobile Traffic is more dominants. Micro service  architecture deceased web development time

Create AEM System user | Service user from Configuration | Ensure Service User Config

Image
  ACS AEM Commons - Ensure Service User Configuration Navigate to  http://localhost:4502/system/console/configMgr Search " Ensure Service User "  Using this configuration service you can create the system user and apply the permission(read/write) on the folder. You can also create the configuration in your code base to deploy the below xml file to create system user and permissions. Configuration Create an OSGi configuration for each service user /apps/test-app/config/com.adobe.acs.commons.users.impl.EnsureServiceUser-testServiceUser <?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="sling:OsgiConfig" principalName="keshav-service-user" operation="add" ensure-immediately=...