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

P_V_Nair
P_V_Nair
Online

Badges

Badges
21

Accepted Solutions

Accepted Solutions
7

Likes Received

Likes Received
37

Posts

Posts
61

Discussions

Discussions
12

Questions

Questions
49

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by P_V_Nair
Customize the badges you want to showcase on your profile
Re: Dispatcher rewrite rule for redirection to a sling servlet - Adobe Experience Manager 27-05-2022
Sure. Thanks a lot @arunpatidar 

Views

92

Like

1

Replies

0
Re: Dispatcher rewrite rule for redirection to a sling servlet - Adobe Experience Manager 27-05-2022
Thanks @arunpatidar . The anonymous read only access to that node is already in place and so we are good with that perspective. But I have a doubt in the rewrite rule. So, shouldn't add anything related to id in the rewrite rule?

Views

100

Like

1

Replies

3
Dispatcher rewrite rule for redirection to a sling servlet - Adobe Experience Manager 27-05-2022
Can someone help me with the rewrite rule for the below scenario? If I hit http://test.test.ca/reader?id=0f69571b-a2ce-4c04-8df8-dc46b137f677 should redirect to this url http://test.test.ca/apps/sling/servlet/asset/test-reader?id=0f69571b-a2ce-4c04-8df8-dc46b137f677, Here id is dynamic and will be different each request and apps/sling/servlet/asset/test-reader is where the resourcetype node reside for my servlet. @arunpatidar

Views

115

Likes

0

Replies

5
Re: AEM - SQL Query with function based indexing for LOWER - Adobe Experience Manager 20-05-2022
This issue got fixed after using the right function index value in the index. I have updated the screenshot for reference. I had to use fn:lower(@jcr:path) in the index property and that fixed the issue.

Views

93

Like

1

Replies

0
AEM - SQL Query with function based indexing for LOWER - Adobe Experience Manager 20-05-2022
I have a query as below SELECT * FROM [dam:Asset] AS a WHERE ISDESCENDANTNODE(a,[/content/dam/company/creative-assets/opt/campaigns]) AND LOWER(a.[jcr:path]) LIKE '%/100098282_enfr%' ORDER BY a.[jcr:created] We have created a custom index and created the required index properties including the one for function indexing as below. This has been re-indexed as well. Now when we run the above query, query tool gives 0 results with the LOWER function in it and when i remove the lower function as below...

Views

104

Like

1

Replies

2
Re: How to ignore servlet requests with query parameters from caching in dispatcher and Akamai - Adobe Experience Manager 17-05-2022
@arunpatidar Does that mean that i need to set the above response headers from my servlet or directly we can do some configuration changes at Akamai interface level to not to cache this servlet requests with id as query param?

Views

212

Like

1

Replies

3
How to ignore servlet requests with query parameters from caching in dispatcher and Akamai - Adobe Experience Manager 17-05-2022
I have a resource type (test/test-code-reader) sling servlet and I call the servlet like the below URL:http://localhost:4502/content/dam/test-code-reader?id=36503786-4aea-4fe6-99a1-536bd7488ad5My resource type node is residing in /content/dam/test-code-reader and hence calling that URL and then appending the query parameter to the URL. Use case: Here I am passing a parameter id which is basically the UUID of an asset. I use this UUID to get some metadata property value of an asset to redirect to...

Views

249

Likes

0

Replies

8
Re: Trigger AEM Event listener : Declaring resolver object globally to be available inside activate and onevent method to be thread safe - Adobe Experience Manager 14-04-2022
Yes. This is exactly the way I have implemented it now. Will try to add the finally in deactivate method and see, how it goes. Thank you @lukasz-m

Views

309

Like

1

Replies

0
Re: Trigger AEM Event listener : Declaring resolver object globally to be available inside activate and onevent method to be thread safe - Adobe Experience Manager 14-04-2022
@lukasz-m I followed exactly your improvements in code and did the session creation as in the approach you said. Added suppress warnings as well. But now Sonar rules are flagging as below and that too critical. Session should be logged out in finally block.,Code Smell,Critical,10min,AEM Rules:AEM-7 From my understanding we cannot do this , since we need this session to be active for the listener to be active and trigger the event , correct? It is not picking the suppress warnings as well. Any th...

Views

316

Like

1

Replies

2