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

HeenaMadan
HeenaMadan
Online

Badges

Badges
17

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
54

Posts

Posts
52

Discussions

Discussions
12

Questions

Questions
40

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by HeenaMadan
Customize the badges you want to showcase on your profile
Re: What is rate limit for AEM rest apis? - Adobe Experience Manager 24-08-2022
No rate limit is configured on these apis.

Views

11

Like

1

Replies

0
Re: connection to magento is failing for non default-store view - Adobe Experience Manager 24-08-2022
@naina01 Did you do cloud CIF configurations for both sites? Verify under Tools>Cloud Services>CIF Configuration Select your project folder. select Commerce Configuration of the project and verify. Refer https://codingwithtea.blogspot.com/2022/07/cloud-configs-for-cif-store-view.html

Views

30

Likes

2

Replies

1
Re: what is mix:referenceable in aem? - Adobe Experience Manager 23-08-2022
Every node has one declared primary node type and zero or more mixin node types. Jackrabbit has a unique identifier for every node (jcr:uuid) but if you tried to list the nodes properties it would not appear, unless you added the mix:referenceable mixin. Refer JCR specification https://developer.adobe.com/experience-manager/reference-materials/spec/jcr/1.0/6.7.21.2_mix_referenceable.html All versionable nodes must also be referenceable, thus versionable is a subtype of referenceable. Refer https...

Views

31

Like

1

Replies

0
Re: Adding Image To A Component Dialog - Adobe Experience Manager 23-08-2022
In _cq_dialog/content.xml, add below line of code if you want to upload file

Views

30

Likes

2

Replies

0
Re: Content Sync - One Environment to other - Auto Sync - Adobe Experience Manager 22-08-2022
OOTB solution is replication. Setup replication agent in Env-1, where a replication agent will publish content to an author and publish in Env-2.

Views

13

Like

1

Replies

1
Re: Bullk edit crawlability of pdf's in AEM - Adobe Experience Manager 22-08-2022
You can do bulk updates of Asset metadata using a CSV file. Refer https://experienceleague.adobe.com/docs/experience-manager-65/assets/using/metadata.html?lang=en#import-metadata To prevent your PDF file from being listed in search results, use the HTTP X-Robots-Tag response header, e.g.: X-Robots-Tag: noindex OR rel="nofollow" on links to those PDFs Download PDF Refer https://developers.google.com/search/docs/advanced/robots/robots_meta_tag

Views

12

Likes

0

Replies

0
Re: Dispatcher cache clear strategy for service - Adobe Experience Manager 19-08-2022
It would be good if you know when this call gives updated data. If you get updated data every 30 days then cache it on dispatcher. Below code cache xml calls for 12 hr. Add this code in vhost file. Header set Cache-Control "max-age=120,s-maxage=0,stale-while-revalidate=43200,stale-if-error=43200" "expr=%{REQUEST_STATUS} < 400" Header set Age 0

Views

68

Likes

2

Replies

0
Re: How to specify the order of filters in AEM? - Adobe Experience Manager 18-08-2022
@TB3dock you can use  @ServiceRanking(500) to provide ranking. try this.

Views

17

Likes

0

Replies

0
Re: How to specify the order of filters in AEM? - Adobe Experience Manager 18-08-2022
Order of filters is handled by sling ranking. Indication of where to place the filter in the filter chain. The higher the number the earlier in the filter chain. This value may span the whole range of integer values. Two filters with equal service.ranking property value (explicitly set or default value of zero) will be ordered according to their service.id. Syntax: @Component(property=Constants.SERVICE_RANKING+":Integer=5000") Refer https://sling.apache.org/documentation/the-sling-engine/filters...

Views

38

Likes

0

Replies

0
Re: Why CUG are not getting published with publishing site? - Adobe Experience Manager 17-08-2022
Please verify user exist on aem publish or not. Check if rep:cugPolicy node is replicated successfully on Publisher under the folder you are replication. This node will have property rep:principalNames containing user/group name. If user doesn't available on publish then it will not show in content & DAM.

Views

40

Likes

2

Replies

1