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 Content Fragment (No items were found) - Adobe Experience Manager 19-07-2022
@ChaoXiong hi, Looks like permission issue to me.Are you logged in as admin ? If not can you try to login as admin and check if you face the same issue ?Hope that helps, thanks.

Views

131

Like

1

Replies

3
Re: Effective Access Control Policies in AEM 6.5 - Adobe Experience Manager 15-07-2022
Hi @akshaybhujbale , You can read about Effective Access Control Policies here:https://experienceleague.adobe.com/docs/experience-manager-65/administering/security/user-group-ac-admin.html?lang=en Thanks.

Views

76

Likes

3

Replies

0
Re: Facing special characters on datasource node rendering in place of "-" - Adobe Experience Manager 08-07-2022
Hi @keshava219 , Is character encoding enabled for the third party api response ?Thanks,Milind

Views

173

Likes

2

Replies

1
Re: Archetype Versions - Adobe Experience Manager 29-06-2022
Hi @Jivithesj , There is no way to find out the current archetype being used for the project.You could have two archetypes which have the same structure in output, and is hard to determine which one is version X and which one is version Y.Also, there is no such metadata stored in the codebase after generation. However, if you had a project freshly created by you on your system, you would see a file named : archetype.properties, but sadly, it would only have parameters used to generate that proje...

Views

91

Like

1

Replies

0
Re: Caching with EhCache in AEM - Adobe Experience Manager 27-06-2022
Hi @edisincek , EH cache is purely server side caching and you can simply use the java EH cache implementation to get it working in AEM by creating a service for it :References you can use :https://www.baeldung.com/ehcachehttps://github.com/ehcachehttps://mkyong.com/ehcache/ehcache-hello-world-example/Hope this helps, thanks.

Views

97

Like

1

Replies

0
Re: How do I get the multifield count in a component AEM? - Adobe Experience Manager 27-06-2022
Hi @Ameen_Dev , You already might be using a model to get the multi data, that multi is returned as a list which you can iterate in HTL.Since, your backend code Resource#listChildren will return an Iterator, you will not be able to get the size of the list of children from there.Either you can , make use of current item properties :// iterate and check if thats the last item, if yes -> return the count ${demoList.count} Or you can declare a variable for itemList and use .length : ${itemList.le...

Views

93

Likes

2

Replies

0
Re: Mixing React and Sightly components in a page - Adobe Experience Manager 22-06-2022
Hi @remakj ,This indeed is a problem and I have faced the same.When you use react and sightly components together, the react one always has precedence and overrides the sightly div because, react takes over the control on DOM.But, when you inject something once react page is loaded, it would be injected successfully.So, I am afraid that you can use sightly and react together.However, I have used ES scripting and react together, by bundling both of them seperately and having seperate parent divs ...

Views

114

Like

1

Replies

1
Re: Create page/site from a simple java project? - Adobe Experience Manager 15-06-2022
Hi @vishakha_sonawale ,For #1 -> you are right, you can get resourceResolver when using osgiI think you can establish a javax.jcr.Session using basic auth and perform CRUD operarions on repository :public Session getAemSession() { Session session = null; try { Repository aemrepository = JcrUtils.getRepository(this.getRepositoryname()); session = aemrepository.login( new SimpleCredentials(this.getRepositoryusername(), this.getRepositorypassword().toCharArray())); } catch (RepositoryException e) {...

Views

135

Like

1

Replies

0
Re: Making scene7 soap call from spring boot! - Adobe Experience Manager 14-06-2022
Hi @akashs71073883 , Does the error say which line exactly has issue here.I was going through certain threads :https://stackoverflow.com/questions/14057932/javax-xml-bind-jaxbexception-class-nor-any-of-its-super-class-is-known-to-tI suppose the issue lies with Marshaller here, can you post the full log if possible, thanks.

Views

87

Like

1

Replies

0
Re: Grouping with respect to path returns incorrect result in the querybuilder - Adobe Experience Manager 14-06-2022
Hi @shaileshbassi , Here is a cheatsheet reference which you can use to build and optimise your query :https://github.com/paulrohrbeck/aem-links/blob/master/querybuilder_cheatsheet.mdThanks,Milind

Views

80

Like

1

Replies

0