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

milind_bachani
milind_bachani
Online

Badges

Badges
27

Accepted Solutions

Accepted Solutions
48

Likes Received

Likes Received
264

Posts

Posts
194

Discussions

Discussions
65

Questions

Questions
129

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by milind_bachani
Customize the badges you want to showcase on your profile
Re: AEM Unit Test for servlet - Adobe Experience Manager 13-12-2021
Hi @anasustic ,You can use @Mock annotations for creating the mock instance of the service as:@Mock SearchService mockSearchService;Then you can initialize your mocks using initMocks() in setUp() as:@Before public void setUp() throws Exception { MockitoAnnotations.initMocks(this); }And then inside test you can use :servlet.searchService = mockSearchService;Hope this helps, thanks!

Views

635

Likes

2

Replies

4
Re: React custom component with props in cif-venia project - Adobe Experience Manager 12-12-2021
Hi @mrkumar82 ,The ask here sounds a little vague to me, can you please elaborate on the requirement ?If you are expecting the authored values in AEM component to passed to react, you can simply use a model class to achieve the same.Refer link for tutorial : https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-with-aem-headless/spa-editor/react/custom-component.html?lang=enIf our each component is expecting a dynamic value and you are expecting data from some PIM or b...

Views

286

Likes

3

Replies

1
Re: Adobe documentation Pages going to 404 - Adobe Experience Manager 10-12-2021
I think all the topics in the given guide: https://experienceleague.adobe.com/docs/experience-manager-cloud-service.html are giving 404 except the OVERVIEW [AEM as a Cloud Service Overview]

Views

249

Likes

2

Replies

0
Re: org.apache.sling.jcr.resource,version=[2.2,3) -- Cannot be resolved AEM 6.5.0 - Adobe Experience Manager 10-12-2021
Hi @ariesyinn ,A thread to similar issue : https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-6-4-beta-apache-sling-jcr-resource-resolver-not-present/td-p/256374This pretty much looks like the issue caused by restructuring of uber-jar. Since, you are upgrading from 6.2 to 6.5, you might want to have a look at deprecated stuff documented here :https://www.adobe.io/experience-manager/reference-materials/6-5/javadoc/deprecated-list.html Regards,Milind

Views

220

Likes

2

Replies

1
Re: Upgrading Jackson databind version causes compilation error. - Adobe Experience Manager 09-12-2021
Hi @kkhan_123 , Can you check if all the dependencies of the core bundle is satisfied? Click on the bundle which is in installed state and check if you are missing any dependencies, highlighted in red. Also, are you able to move the bundle to active state manually ?

Views

425

Likes

2

Replies

0
Re: How to import an AEM zipped package (/conf) to local IDE? - Adobe Experience Manager 09-12-2021
Hi @infiniteshi,I understand that you already have downloaded the ZIP package from CRX/DE and you have successfully unzipped it (If not, use "archive utility" or use terimal cmd : "unzip ").Now if you open the files and get till the conf folder, you might see .content.xml file (If not, use CMD+Shift+'.' or you can see via terminal cmd: "ls -a" to display files starting with ".", which are hidden by default in finder).Now to commit the same you can create folders having those .content.xml.For ins...

Views

143

Likes

2

Replies

0
Re: Adding SPA Component to Experience Fragment - Adobe Experience Manager 01-12-2021
We use MapTo() to map the react component with created aem custom component holding the properties. Technically it should work since once content fragment is created it will resolve the rendering markup from mapped react component.

Views

125

Like

1

Replies

0
Re: Anonymous user is showing after successful authentication - Adobe Experience Manager 01-12-2021
HI @khushbu16anand,Can you check if the session ID is also same for the users getting logged in.Also, check if your handler is available under "Registered Authentication Handlers" for the path you are trying to access. (Navigate to Sling Authenticator in Felix console via http://localhost:4502/system/console/slingauth)

Views

153

Like

1

Replies

0
Re: How to open Putty Session on local host - Adobe Experience Manager 01-12-2021
Hi @Anish2 ,You actually need to use Putty, generally we use putty to get into unixbox or server network. You can directly test the shell script from localhost. If your lower environments have same hosting architecture as PROD, you can dry run on non prod envs. If you can elaborate what the script is supposed to do - we may have some additional comments/suggestions for testing the script locally.

Views

350

Like

1

Replies

0
Re: Error while trying to run IntelliJ UnitTest Debugger - Adobe Experience Manager 29-11-2021
Hi @AEMWizard ,What is the JAVA version you have been using and also the bnd-maven-plugin version in POM ?Thanks,Milind

Views

141

Like

1

Replies

1