Hi @RamTejaReddy , Can you try changing the lines ProxyPass "http://xxx/test-one" ProxyPassReverse "http://xxx/test-one"to ProxyPass "/" "http://xxx/" ProxyPassReverse "/" "http://xxx/"Since your location is already set to "/test-one", thi...
Hi @ajoshi84 , Refer to https://bimmisoi.blogspot.com/2020/08/colorful-multifields-in-aem.html for adding colours to the nested multi fields.For Add button label, I am afraid there is no OOTB way; but you can extend the above solution to write a custom javascript and modify the button labels using t...
Hi @webdev91 , To keep it simple enough,1. For REST API consumption - you can use the HTTPClients class to generate an HTTP Client instance and you wouldn't need any external dependency, as these are part of uber jar.2. To manage credentials across different environments - Can create a custom OSGI ...
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
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
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 fo...
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
@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 use...
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 impl...
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 mechanis...