AEM 6.5

How to create package of Users, Groups their Permission by using ACS Commons

First, Upload ACS Commons Package at your author instance. Now, Go to the URL http://localhost:4502/miscadmin. Now, Go to acs-commons > Content Packagers. Now, Go to acs-commons > Content Packagers. Click on New > New Page. Give a Title, Select ACL Packager and click on create. (If we select Authorizable Packager User/Group package will create without […]

Read More

OR Split in Workflow in AEM 6.5

The OR Split creates a split in the workflow, after which only one branch will be active. This step enables you to introduce conditional processing paths into your workflow. You add workflow steps to each branch as required. OR Split – Configuration Common Tab :  In this tab, only one property will be display :  […]

Read More

Dialog Participant Step in Workflow in AEM

Normally, we use Dialog Participant Step to collect the small amount of data from the  user who is assigned to the workitem. We collect this information through dialog and this data is used later in the workflow. On the basis of this data we can perform some actions. Dialog Participant Step – Configuration Common Tab […]

Read More

AEM as a Cloud Service – Part 1

Some of the Benefits of moving to AEMaaCS As per Adobe documentation, AEM as a Cloud Service provides a continuous delivery pipeline for the AEM codebase using CI/CD pipeline. It provides automatic updates with zero downtime. This gives an advantage of keeping you on the most recent version. It will deliver content quickly and efficiently, […]

Read More

SAML Integration with AEM

SAML (Security Assertion Markup Language) is a key technology through which we can achieve SSO (Single Sign On). In Adobe Experience Manager (AEM) 6.x, a SAML authentication handler is provided by default. How to configure SAML in AEM? There are some simple steps through which we can configure SAML in AEM Go to the AEM […]

Read More

Use of Import-component.js in React with AEM

If you are using the archetype used in part 1 , then your react module contains a file called import-components.js . 1.What is the Use of import-component.js ? You need to import the components inside import-components.js , Otherwise, you will not be able to show your component into the page.i.e. Here is the location of […]

Read More

SPA in AEM 6.5 Part 2

1. How to create a custom SPA component ? Lets create a component in AEM For creating custom component you need to remember these things i.e. There is a mapping of components between aem module and react module. We should use Sling exporter to export our component json and so that it can be accessed […]

Read More

SPA in AEM 6.5 Part 1

What is SPA? SPA stands for single page application. It is a new feature in AEM 6.5 which helps us to build single page applications using react or angular with AEM. How SPA works in AEM? Let’s understand the flow using this diagram — We have an AEM Component in which we can have nodes […]

Read More