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

kautuk_sahni
kautuk_sahni
Online

Badges

Badges
99

Accepted Solutions

Accepted Solutions
1168

Likes Received

Likes Received
1684

Posts

Posts
7510

Discussions

Discussions
4476

Questions

Questions
3094

Ideas

Ideas
55

Blog Posts

Blog Posts
146
Top badges earned by kautuk_sahni
Customize the badges you want to showcase on your profile
Re: limit getNodes - Adobe Experience Manager 15-10-2015
Hi sakthiT As far as i know, there is no way other than this. We need to Iterators over child nodes.Example:- java.lang.Iterable custNode = JcrUtils.getChildNodes(content, "customer");Iterator it = custNode.iterator(); //only going to be 1 content/customer node if it existsif (it.hasNext()) { //Count the number of child nodes to customer Node customerRoot = content.getNode("customer"); Iterable itCust = JcrUtils.getChildNodes(customerRoot); Iterator childNodeIt = itCust.iterator(); //Count the n...

Views

607

Likes

0

Replies

0
Re: AEM 6.1 - Unable to use the template created in new page - Adobe Experience Manager 15-10-2015
Hi Siva Dorai Please go through the link mentioned, it’s a video showing how to create a template and use it.Link: - https://youtu.be/dI1yi2mmNuo I hope this will help you. PS: - Make sure you have mentioned Resource Type while creating a template, Allowed paths should have “/content(/.*)?” and if you are using AEM 6.0 + then while creating component you must mention Super Type. Thanks and RegardsKautuk Sahni

Views

194

Likes

0

Replies

0
Re: AEM 6.0 and AC 6.1 Integration Problem - Adobe Experience Manager 15-10-2015
Hi Ravi-HclIF ADOBE CAMPAIGN DISPLAYS AN ERROR WHEN CLICKING THE SYNCHRONIZE BUTTONIf when clicking the Synchronize button you see the following error: Error while executing the method aemListContent' of service 'nms:delivery'To fix this issue, make sure the AEM connection-url configured in the External Accounts is reachable from the machine.A switch from localhost to an IP-address solved this issue. Link:- https://docs.adobe.com/docs/en/aem/6-1/administer/integration/marketing-cloud/campaign/ca...

Views

521

Likes

0

Replies

0
Re: Digital Asset Management - Adobe Experience Manager 15-10-2015
Hi Fredrik Abel Please go through the following links for partial information about the same.Link:- http://www.adobepress.com/articles/article.asp?p=2156962Link:- https://docs.adobe.com/docs/en/cq/5-6-1/dam/dam_documentation.htmlLink:- http://www.adobepress.com/articles/article.asp?p=2129363I hope this will help you. Thanks and RegardsKautuk Sahni

Views

124

Likes

0

Replies

0
Re: Lock Columns in CQ.Ext.grid.EditorGridPanel - Adobe Experience Manager 15-10-2015
Hi Kumar Yadanaparthi Please find below the code snippet doing as you stated. //java script code when your ExtJS library is loaded Ext.onReady(function() { var columns = [ { text : 'Column 1', dataIndex: 'column1', locked : true, width : 200 }, { text : 'Column 2', dataIndex: 'column2', locked : true, // ADD THIS IN COLUMN 2 width : 200 }, { text : 'Column 3', dataIndex: 'column3', width : 200 } ]; var store = Ext.create('Ext.data.ArrayStore', { fields: [ {name: 'column1'}, {name: 'column2'}, {n...

Views

524

Likes

0

Replies

0
Re: AEM 6.1 - Store data (in session?) - Adobe Experience Manager 15-10-2015
Hi Danny Gloudemans Please go through the article mentioned below, it is covering one of the architecture of caching.The major thing covered in this article include designing part of caching, client side storage, CDN, Varnish (server on steroid) etc.Link:- http://scratchpad101.com/2014/07/25/caching-architecture-adobe-aem-part-1/I hope this would help you to scale and to optimize performance. Thanks and RegardsKautuk Sahni

Views

428

Likes

0

Replies

0
Re: OSGI - Refrence unsatisfied - Adobe Experience Manager 15-10-2015
Hi jerrys49113842If I read this correctly, then your problem is not an unsatisfied bundle, but an unsatisfied service. If it so far that the SCR picked up your service, then your bundle must already be active.With declarative services, I have seen similar behavior when a service with configuration-policy=require is missing a configuration. Another possibility is that the activate-method threw an exception. Please verify it. Thanks and RegardsKautuk Sahni

Views

443

Likes

0

Replies

0
Re: How to skip everyone group while sending mail - Adobe Experience Manager 15-10-2015
Hi arnab26 To send email from AEM to limited set of users, write an OSGi bundle that uses Java Mail API and you can send email. Now having said that - there may be libs that you need to deploy in bundle fragments to get an OSGi bundle using Java mail API working. Please have a look at the following link doing above stated Link: -https://helpx.adobe.com/experience-manager/using/creating-custom-aem-workflow-steps.html OR OSGI bundle and can call it using Sling servlet or as a Service. Please have ...

Views

261

Likes

0

Replies

0
Re: How to make SAML Authentication Handler handle logout? - Adobe Experience Manager 15-10-2015
HI jdelannoyPlease go through the following article covering both local and global logout process.Link:- http://docs.spring.io/spring-security-saml/docs/current/reference/html/configuration-sso.htmlI hope this would help you in answering your questions partially.Thanks and RegardsKautuk Sahni

Views

2.2K

Likes

0

Replies

0
Re: admin console edit by default. - Adobe Experience Manager 15-10-2015
Hi Narayan Agreeing with bsloki and Scott. What are we trying to save here? (A single click). If you may state the use case of the same? Thanks and RegardsKautuk Sahni

Views

325

Likes

0

Replies

0