admin

AEM Forms with MySQL

In this blog, I will discuss how the AEM 6.5.x Adaptive form will work with MySQL. Let’s start the discussion: How to connect adaptive forms to the MySQL database? For Connecting Adaptive Form to the MySQL database server, below mentioned steps need to be followed. Step 1: Install mysql-connector-j bundle in AEM Go to the […]

Read More

How to encrypt and decrypt OSGI config values

First, we have to make a service configuration by using the code given below. In this code I am showing you the normal way to show osgi config value. @Component(service = TestService.class, immediate = true) @Designate(ocd = TestService.TestConfig.class) public class TestService {    @ObjectClassDefinition(name = “TestConfig”, description = “This is the test config”)    public @interface TestConfig […]

Read More

How to add/update the Search Filters in AEM?

To update Search Filter go to Tools -> General -> Search Forms as shown below in the image. When you click on the search form UI will appear as shown below. Select the Assets Admin Search Rail and click on edit as shown below. The following screen will appear after clicking on the edit icon. […]

Read More

FLEX in CSS

Q1. Why do we need flex? a. The reason we need to use flex is because it is supported in all major browsers. b. We don’t need an external library for using flex. c. We don’t need properties of CSS like width, float, position when using flex. d. Flex also manages the height of the […]

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 integration with Adobe Analytics

We have integrated AEM with Analytics for multiple projects. Integration with Analytics is a choice of the client whether they want to add development team to update all the components with Analytics data attributes or only Adobe Analytics team provides a JS that manages all the analytics by itself. Both of these approaches has its […]

Read More

AEM with Adaptive Form

We have developed multiple solutions using Adaptive form and Project UI of AEM. Here is the use case- We created a solution for a digital media firm. A client has a very tedious internal approval process for media content and they were following manual process for it. Process was time consuming for creating and setting […]

Read More

HTML of a Page in OSGi Service in AEM

In this blog, I will explain one interesting use-case of one of my project. Here is the user-case-   “whenever we activates a page on author instance we need to get the HTML for the activated page and send this page HTML to another search engine. “   In this blog, I will explain how […]

Read More

Enable RTE Plugins For Content Fragment

In this blog I am going to explain a Content Fragment related issue. This solution is working for AEM6.5. This solution has not been tested for earlier versions of AEM. I will explain this issue on the basis of questionnaires. Let’s start-   Can we update RTE plugins for Content Fragment? Yes we can. By […]

Read More