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: 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: Servlet not getting registered - Adobe Experience Manager 18-02-2020
please check this example servlethttps://github.com/arunpatidar02/aem63app-repo/blob/master/java/SimpleGetGroup.java

Views

1.6K

Likes

0

Replies

0
Re: Set default values for fields inside multifield in AE... - Adobe Experience Manager 12-02-2020
Check the following document:https://gist.github.com/kevinweber/05c4c8cf005a6e640f7c8ad65ef5113c#file-multifield__aem6-3-xml

Views

2.7K

Likes

2

Replies

0
Re: How to Unit Test Page Locale in Sling Model - Adobe Experience Manager 11-02-2020
i would create a spy for the injected page and mock the getLocale() API call. In the end you are not interested in how the locale is calculated, but just in the result of it.

Views

990

Like

1

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
Re: get running workflow on a page - Adobe Experience Manager 23-12-2019
There are many different ways to run a workflow on a page programmatically. Trigger workflow automatically by Sling Schedular Service. - https://helpx.adobe.com/experience-manager/using/aem-first-components1.html, https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/javadoc/index.html?org/apache/sling/commons/scheduler/Scheduler.htmlTrigger workflow automatically by workflow launchers. - https://blogs.adobe.com/contentmanagement/tag/workflow-launcher/Trigger ...

Views

940

Likes

0

Replies

0
Re: how to do servlet unit testing - Adobe Experience Manager 21-12-2019
Hello @naveent23995593,A more modern way to write Sling Servlets will be to write it with the OSGI DS 1.4 (R7) annotations. For instance, a Sling Servlet registered by resource types can utilise this annotation @SlingServletResourceType.Writing unit tests for @SlingServletResourceType is very simple. Utilising the AEM Mocks JUnit library, First, you would need to instantiate the Sling Servlet object. Thereafter, you would need to pass in the Sling request and response (wcm.testing.io) mock objec...

Views

4.1K

Like

1

Replies

0
Re: Clientlib.min CSS and Js are big in sizes - Adobe Experience Manager 19-12-2019
Yes, you can create a specific client library for a specific page template to only embed component based client libraries that are allowed to be authored on the page. You can create a base client library that carries the common JS & CSS across all pages, and a home client library for the specifically for the home page, for example.

Views

2.0K

Likes

0

Replies

0
Re: To develop Android Mobile App Using AEM Mobile - Adobe Experience Manager 18-12-2019
Hello,I can give you a high level solution of what I think you are looking for.Most likely you’re interested in the need of enabling your AEM content for multi-channel consumption, for example, a mobile Android app, a mobile IOS app, a frontend JavaScript web application, etc...You’ll be definitely using AEM as headless content, so this means that you would need to find a way to expose content from AEM in a unified, digestible, and reusable way.If you are using AEM core components and editable t...

Views

1.1K

Likes

0

Replies

0
Re: Not able to embed iframe from different domain - Adobe Experience Manager 18-12-2019
Hello there,It seems like it may be a problem with the chat bot itself. Check the response headers for:Content Security Policy (CSP) frame-ancestors directiveX-Frame-Options Do they allow the use for iframe for consumption?AEM pages should be able to display iframes without much configuration, but from experience, it’s not a good practice to use iframes on your webpages because ow security issues. You can start with a simple that refers to https://google.com to validate that no AEM configuratio...

Views

1.9K

Like

1

Replies

0