Hi
I have written a custom servlet in AEM author (v6.1). I would like to get response from this servlet without providing auth credentials. Is it possible to have such exclusion in AEM author instance?
Current behaviour: At this moment, when I hit my servlet, the request is redirected to AEM login page.
Any pointers on this will be a big help. Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Configure to exclude authentication at http://localhost:port/system/console/configMgr/org.apache.sling.engine.impl.auth.SlingAuthenticator
Or
in your code add
Property(name = "sling.auth.requirements", value = "-{pathtoservlet}")
Notice the dash prefixing the path - if you don't include the dash that means the path requires authentication.
Configure to exclude authentication at http://localhost:port/system/console/configMgr/org.apache.sling.engine.impl.auth.SlingAuthenticator
Or
in your code add
Property(name = "sling.auth.requirements", value = "-{pathtoservlet}")
Notice the dash prefixing the path - if you don't include the dash that means the path requires authentication.
I am facing a similar issue, I want to allow the user to access AEM-INSTANCE/linkshare.html so I configured the following:
I still get the login screen if I navigate to the linkshare url, what am I doing wrong?
Views
Replies
Total Likes
In case of author AEM 6.5 instance, it can be done by excluding the servlet path in “Apache Sling Authentication Service"https://queryresolved.com/2020/06/03/aem-6-5-author-exclude-a-url-from-authentication-requirement/
Views
Likes
Replies