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

Fanindra_Surat
Fanindra_Surat
Online

Badges

Badges
23

Accepted Solutions

Accepted Solutions
33

Likes Received

Likes Received
103

Posts

Posts
83

Discussions

Discussions
13

Questions

Questions
70

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Fanindra_Surat
Customize the badges you want to showcase on your profile
Re: including client lib inside the template - Adobe Experience Manager 23-09-2021
@Sanjay_Bangar Goos to have greate AEM SME in our Community. Keep the great work going.

Views

252

Likes

0

Replies

0
Re: Get file name from file url - Adobe Experience Manager 20-09-2021
Hi,I am not sure of this is feasible because the reference generally used to read/fetch further content, so having path there make sense. Probably from front end/consumer API side you can trim the path and just use it file name as needed.

Views

193

Like

1

Replies

0
Re: Get page description from page url - Adobe Experience Manager 20-09-2021
I think you should reconsider the implementation, instead of return just path from list, return the title, description etc as an object and reuse it.If it is not possible then you should consider creating a dedicated api. You should not be using OOTB json, which leads into security vulnerability if .json is not unblocked for all the request.

Views

130

Likes

2

Replies

0
Re: Folder inside apps module not uploading on install. - Adobe Experience Manager 17-09-2021
Hello @Fanindra_Surat , I checked the filter.xml and it seems to be working now that I added it but now I am getting an error for the dropwdown.jsp:*ERROR* [[0:0:0:0:0:0:0:1] [1631910024484] GET /mnt/override/apps/kg-commons/components/button/_cq_dialog.html/content/kg-commons/us/en/jcr:content/root/container/container/button HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Uncaught Throwable javax.servlet.ServletException: Failed executing script /libs/cq/gui/components...

Views

148

Likes

2

Replies

0
Re: How to access JCR nodes using code - Adobe Experience Manager 17-09-2021
@Ronnie09 Are you trying to run the code from within AEM or are you trying to access the JCR repository from a different JVM (not AEM)?

Views

432

Like

1

Replies

0
Re: AEM - Java code needs to access frontend resource ( in /etc.clientlibs) - Adobe Experience Manager 15-09-2021
Thanks all ! I will go with the new system user option for the Java code then as this seems to be the safest.

Views

340

Like

1

Replies

0
Re: Create component which should be preloaded with template - Adobe Experience Manager Headless 14-09-2021
@Ronnie09, Below are the options: 1. You can update the dialog properties through CRX/de.2. You can update dialog XML from the code repository. Thanks,Aruna

Views

310

Likes

2

Replies

0
Re: creating a basic authentication for aem service for different non aem server for post call (aem6.5) - Adobe Experience Manager 14-09-2021
If required, even you can use the OAUTH JWT Bearer Token token to achive your use case(default Assets HTTP API with basic authentication), refer to the following URL for more details - https://medium.com/tech-learnings/how-to-manage-the-protected-aem-resources-through-oauth-2-0-851ce4c7a5ef (JWT Bearer Token— Server to Server integration) RegardsAlbin Iwww.albinsblog.com

Views

268

Like

1

Replies

0
Re: AEM 6.5 dots in page name - Adobe Experience Manager 13-09-2021
@bipin_bitla, If you create page names with dot then AEM sling can consider the page name up to dot and remaining part it takes as suffix. Please find below examples how sling is identifying resource andmapping components and templates.

Views

213

Likes

2

Replies

0
Re: Make a API call on page load and use across all components in the Page - Adobe Experience Manager 13-09-2021
Hi @rajakumare1 , Consider below approach - At a page level, preferably in a Page component Model you can make an API call and save the API response in the request object attribute. Specifically like,String apiResponse = customService.getResponse();// Set the api response to the request object attributerequest.setAttribute("result", apiResponse); To reuse this in component, read the attribute value from the request object itself in the corresponding Sling Model for the component. Sample code bel...

Views

384

Like

1

Replies

0