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: client library in Editable templates - Adobe Experience Manager 03-12-2021
Hi @manikanthar1295 , Excluding a clientlib from a component that is already included in a template is not possible. Instead, you can load clientlib1 in the component and have clientlib2,clientlib3 at the template level. Thanks,Fani

Views

140

Likes

2

Replies

0
Re: including client lib inside the template - Adobe Experience Manager 21-09-2021
Hi @mudaliar847906 - The variable names in data-sly-use and data-sly-call need to be of same case. They are case sensitive.Either change the first line to data-sly-use.clientLib OR update the second line to clientlib.css Thanks,Fani

Views

301

Like

1

Replies

0
Re: Get file name from file url - Adobe Experience Manager 20-09-2021
Hi @AD-Engineer - You can follow the same approach as in https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/get-page-description-from-page-url/td-p/423955 The response of .json call with contain the page name in the field jcr:title, pageTitle based on context of usage. Thanks,Fani

Views

195

Like

1

Replies

0
Re: Get page description from page url - Adobe Experience Manager 20-09-2021
Hi @AD-Engineer - I assume, you are referring to the description stored on the page in jcr:content node.If yes, you can retrieve it in javascript by accessing the path over HTTP or Ajax call in the format %page_path%/jcr:content.json.Ex: /content/we-retail/language-masters/en/men/jcr:content.json for the page content/we-retail/language-masters/en/men.html This gives the completed information present on the node along with description in json format. Thanks,Fani

Views

134

Like

1

Replies

0
Re: Need inputs on preferred approach to fix Capital JPEG issue via Dispatcher in AMS - Adobe Experience Manager 20-09-2021
Hi @amanagarwal21 - You are right, the ams publish filter is immutable. So, you need to have a custom file to update the filter rules. Approach is as below: 1. You need to clone the ams_publish_filters.any file into a custom, project specific filter file like %custom_name%_publish_filters.any.2. Update this file with the rule to allow 'JPG'.3. Include this file in your project specific farm.any file.4. If you don't have a custom farm.any file, then create a custom one like 998_%custom_name%_publ...

Views

416

Likes

2

Replies

1
Re: Folder inside apps module not uploading on install. - Adobe Experience Manager 17-09-2021
Hi @Jeanmaradiaga - 1. Check if your filter.xml covers the paths datasources and dialogs?2. If it does cover, then when you try to manually install the package do you find any errors in the console or the error log? Thanks,Fani

Views

153

Likes

3

Replies

1
Re: How to access JCR nodes using code - Adobe Experience Manager 16-09-2021
@Ronnie09 - Use Service Resource resolver to get access to the AEM internal resources, and then update the node properties. You can create a system user with appropriate permissions to the /content/launches/* path and use this to configure service for fetching the service resource resolver.Some useful links for fetching service resource resolver - https://aem4beginner.blogspot.com/how-to-get-resourceresolver-fromhttp://www.aemcq5tutorials.com/tutorials/resourceresolver-from-resourceresolverfacto...

Views

462

Like

1

Replies

0
Re: AEM - Java code needs to access frontend resource ( in /etc.clientlibs) - Adobe Experience Manager 14-09-2021
Hi @fionas76543059 - To access the AEM system restricted paths in Java code, you will need service resource resolver. You can create a system user with appropriate permissions to the /apps/* path and use this to configure service for fetching the service resource resolver. Some useful links for implementation - https://aem4beginner.blogspot.com/how-to-get-resourceresolver-fromhttp://www.aemcq5tutorials.com/tutorials/resourceresolver-from-resourceresolverfactory/ Thanks,Fani

Views

380

Likes

2

Replies

1
Re: creating a basic authentication for aem service for different non aem server for post call (aem6.5) - Adobe Experience Manager 14-09-2021
Hi @srinivas_chann1 - Please refer to AEM way of authenticating users using ACLs - https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/implementing-authentication-for-servlet-on-publish-instance/td-p/169598A straight forward way of implementing your own authentication mechanism - https://stackoverflow.com/questions/34918421/implement-authentication-for-servlet-on-publish-instance-cq5-aem Also, just curious as to why you are doing it in Publish instance? Can you not use the ...

Views

283

Like

1

Replies

0
Re: AEM 6.5 dots in page name - Adobe Experience Manager 13-09-2021
Hi @bipin_bitla - My two cents The page name in AEM is the resource url as well, and so a dot in page name requires a dot in the resource url as well.This could make things trickier, as Sling reads the characters after (.) in the resource url as selectors and could lead to unexpected scenarios.Ref for Sling resolution of URL: https://sling.apache.org/documentation/the-sling-engine/url-decomposition.html Thanks,Fani

Views

216

Like

1

Replies

0