Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

webdev91
webdev91
Online

Badges

Badges
14

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
12

Posts

Posts
22

Discussions

Discussions
6

Questions

Questions
16

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by webdev91
Customize the badges you want to showcase on your profile
Re: Website Structure for Different Region - Adobe Experience Manager 02-06-2022
Thank you all for your quick response.As many suggested the below structure, we have decided to go with it./content /brand /us/en/ /in/en/ Thank you again, everyone!@Fanindra_Surat @SantoshSai @Kiran_Vedantam @HImanshu_Jain_

Views

114

Likes

2

Replies

0
Website Structure for Different Region - Adobe Experience Manager 01-06-2022
We have a website with different regions (USA and India). All the content will be in English only so, no translation is needed. Also, the pages for both regions are different and they don't share the content either. Only, the look and feel are the same. In this case, what would be the best folder structure in "sites.html/content" for our website?

Views

160

Likes

0

Replies

6
Publishing from Author to Publish instance - Adobe Experience Manager 26-05-2022
I was building pages in my local while the DEV environment for author and publish instance was getting configured. Now we have the DEV environment configured so I created a package of conf, dam, experience fragments, and pages separately from my local and installed them in the DEV author instance. I took that approach because there are many pages and didn't want to spend time again building those pages that I built already in my local.Now, my question is, what is the approach to moving everythin...

Views

72

Likes

0

Replies

3
Re: REST API Implementation in AEM - Adobe Experience Manager 26-03-2022
Hi @Fanindra_Surat Thank you for your response.My additional question on the points below.1. It's good to know that there is an HTTP Client already available in uber-jar so I don't need to worry about adding additional dependency (at least initially). Of course, I am going to research more on this but is there any demo app or example or article that you recommend which explains HTTP Client and how to implement it within AEM?2. As long as storing the properties related to API credentials in OSGi ...

Views

118

Like

1

Replies

0
REST API Implementation in AEM - Adobe Experience Manager 23-03-2022
Hello Everyone,I just wanted to throw a question on REST API implementation here. We have a third-party REST API that returns data needed for our website's couple of pages. I am not sure which REST Client to use or how to implement one in terms of AEM development. So, I am just seeking some guidance here. Additionally, we have authentication credentials for different environments to access the API. Where should I store those credentials so that it stays secured and won't get compromised.Continui...

Views

142

Likes

0

Replies

2
Re: Using ParSys vs Layout Container Responsive Grid as resourceType - Adobe Experience Manager 04-02-2022
Hi @anish-s Yes, I agree that a Layout Container definitely provides more features to the author in managing the layout, adding policies, etc. But here, we define the layout and manage it through the code. The sole purpose of ParSys here is to allow the author to add the component, so thought no need to use the Layout Container. Additionally, Layout Container comes with extra wrapper div with aem-grid CSS classes, which are not needed here.With Layout Container: With ParSys: This was the...

Views

192

Like

1

Replies

1
Using ParSys vs Layout Container Responsive Grid as resourceType - Adobe Experience Manager 03-02-2022
Hello Everyone,We have a simple 3-Columns Grid component where we are using "wcm/foundation/components/parsys", directly inside those columns for adding whatever component. Our concern is that, is it safe to use "parsys" as resourceType directly or should we use "wcm/foundation/components/responsivegrid" as resourceType always?What are the disadvantage or what's going to impact in the future if using parsys directly here?Note: We are using parsys directly here because, the component itself is cr...

Views

225

Likes

0

Replies

3
Re: Value conversion using ValueMap vs standard java methods - Adobe Experience Manager 21-01-2022
Hi @BrianKasingli Thank you very much for your excellent explanation.Now, it makes sense why Adobe decided to use @ScriptVariable in this particular Breadcrumb case, as they can handle multiple conditions in a one-liner.

Views

187

Like

1

Replies

0
Re: Value conversion using ValueMap vs standard java methods - Adobe Experience Manager 20-01-2022
@Jörg_Hoh Thank you for your quick response.In which case we should use @ValueMapValue over @Inject? or should we always use @Inject annotation as a best practice?Note: I have edited my question a bit. I was talking about @ValueMapValue annotation

Views

230

Like

1

Replies

0
Value conversion using ValueMap vs standard java methods - Adobe Experience Manager 20-01-2022
I was looking into aem-core-wcm-components GitHub repo and noticed the different patterns for converting string to integer or boolean. Below is the code snippet from BreadcrumpImpl.java. @ScriptVariable private ValueMap properties; private boolean showHidden; private int startLevel; @PostConstruct private void initModel() { startLevel = properties.get(PN_START_LEVEL, currentStyle.get(PN_START_LEVEL, PROP_START_LEVEL_DEFAULT)); showHidden = properties.get(PN_SHOW_HIDDEN, currentStyle.get(PN_SHOW_...

Views

241

Likes

0

Replies

4