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

BrianKasingli
BrianKasingli
Online

Badges

Badges
40

Accepted Solutions

Accepted Solutions
293

Likes Received

Likes Received
864

Posts

Posts
732

Discussions

Discussions
48

Questions

Questions
683

Ideas

Ideas
0

Blog Posts

Blog Posts
3
Top badges earned by BrianKasingli
Customize the badges you want to showcase on your profile
Re: Refresh only particular component after the edits ins... - Adobe Experience Manager 22-02-2020
Hello @umamaheswariy46,Within your source code, locate your component, and edit the _cq_editConfig.xml, and replace with: Or, within the JCR, you can locate your component/cq:editConfig/cq:listeners, to add a new property of "afteredit" to "REFRESH_SELF". The SGAEMSolutions blog provides a very good tutorial (++included, video tutorial) and explanation for cq:listeners in cq:editConfig. There are much more options than refreshing a single component after an edit, check it out here - http://w...

Views

2.0K

Likes

0

Replies

0
Re: how to get all assets from a folder under content dam... - Adobe Experience Manager 22-02-2020
Hello @sams16001423 You can utilise the JCR API. The JCR API allows you to query nodes in the JCR with the "JCR_SQL2 search queries". I have provided an example for you below where we are querying for all JCR node-type [dam:AssetContent] under the path "/content/dam/my-project". If results are returned, then we will print each jcr:lastModified (the dam:AssetContent node composes of the jcr:lastModified values). Making a query like this is awesome because you don't need to worry about nested fold...

Views

2.8K

Like

1

Replies

0
Re: How to generate sitemap without ACS AEM Common Site M... - Adobe Experience Manager 22-02-2020
@anthonyt2853861,You can take a look at the implementation of the ACS Common Site Map Servlet, and use it as inspiration to build your own Site Map servlet. Cloning "com.adobe.acs.commons.wcm.impl.SiteMapServlet" directly into your project will work without much configuration. Read the implementation of the SiteMapServlet and understand what it is doing. With this example code, it should be able to steer you to the right direction on how to implement and build your own Site Map Servlet. Also, ne...

Views

1.5K

Likes

0

Replies

0
Re: Experience Fragments Building Blocks - Adobe Experience Manager 20-02-2020
Hello @Saiteja120,Here are some things you can try to debug your error:Analyse and tail -f the /crx-quickstart/logs/error.log file to see what the real problem is; there may be an exception. When the error.log is tailed, apply the same actions on how you would edit the policies to allow components to be authored on a given editable template.Ensure that your basePage template is extending from the wcm.core.components.v2, to get the maximum benefit of AEM 6.5 and it's editable template features.If...

Views

1.2K

Like

1

Replies

0
Re: Issue with Robots.txt - Adobe Experience Manager 20-02-2020
@lovepreetk75597 ,Your configuration of the robots.txt file looks correct. Also, ensure that the robots.txt file can be accessed at the root level of your website.e.g.: https://example.com/robots.txt User-agent: * Disallow: / One more thing is, you should request Google to recrawl your website. Check out this link, provided from Google's own knowledge centre, for instructions on how to ask Google to quickly crawl and index a new robots.txt https://support.google.com/webmasters/answer/6078399?hl=...

Views

936

Likes

0

Replies

0
Re: SPA react components author - Adobe Experience Manager 16-02-2020
Hello Daf99, I think you are asking for more clearer references/tutorials on how to build ReactJS Components in AEM. In addition to all great the AEM ReactJS tutorials that are published on Adobe's documentation library, here are some interesting resources online that I found useful when I started building AEM ReactJS Components:Youtube Video, How to create an AEM component using Reactjs - https://www.youtube.com/watch?v=nec_MDPzMYkYoutube, How to configure the Sling Model for the AEM React comp...

Views

1.0K

Like

1

Replies

0
Re: Servlet not getting registered - Adobe Experience Manager 14-02-2020
hello Roslin, It seems like you are missing some annotations, OSGi DS 1.4 (R7) component property type annotations for Sling Servlets.Take an example from Apache's website where they share an example of how to create a Sling Servlet, registering by ResourceType: (service = { Servlet.class }) @SlingServletResourceTypes( resourceTypes="/apps/my/type", methods= "GET", extensions="html", selectors="hello") public class MyServlet extends SlingSafeMethodsServlet { protected void doGet(SlingHttpServlet...

Views

1.6K

Likes

0

Replies

0
Re: Set default values for fields inside multifield in AE... - Adobe Experience Manager 11-02-2020
Hi @nikhil1986 Adding the property "value" to your dialogue input fields would be your solution. Take a look at the example below: I hope this helps!

Views

2.0K

Like

1

Replies

0
Re: How to Unit Test Page Locale in Sling Model - Adobe Experience Manager 11-02-2020
Hello, @rajdevms, If you are writing Java unit test utilising the JUnit4 library. Then you can use the AEM Mocks library where it can easily enable you to test your sling models. Utilising the AEM Mocks Library, when you initiate a resource in memory, the properties can be obtained in the Sling Annotation of @Inject. Example:// Sling Model @Model(adaptables = Resource.class) public class CustomComponent { // @ValueMapValue; another way to obtain the page's property value. @Inject private String ...

Views

859

Likes

0

Replies

0
Re: How to allow access under /apps? - Adobe Experience Manager 23-12-2019
Hey @pankajc23172579,The answer to your problem will be:1. Dispatcher: /0069 { /type "allow" /url "/apps/*" }2. Allow permissions for the "anonymous" and "everyone" user groups have READ permissions to the /apps/* path.3. Read ./crx-quickstart/logs/error.log (you should see very valuable information here).I hope whatever you are trying to achieve is for non-production, testing, and educational purpose only.Can you please explain why you are trying to expose the /apps folder structure to the publ...

Views

1.2K

Likes

0

Replies

0