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

Adobe Summit is happening now. Discover what's next in customer experience.
SOLVED

permissive servlet not getting invoked from webserver

Avatar

Level 5

Hi ,

I am trying to implement permissive servlet, as advised in below mentioned page :

https://docs.adobe.com/docs/en/dispatcher/permissions-cache.html

I have deployed the servlet and made changes as advised, however I do not see my servlet getting the HEAD request.

My loggers never get printed.

I have /allowAuthorized "0" in cache section.

and below is part for /authchecker

/auth_checker
  {
  # request is sent to this URL with '?uri=<page>' appended
  /url "/bin/permissioncheck"
       
  # only the requested pages matching the filter section below are checked,
  # all other pages get delivered unchecked
  /filter
    {
    /0000
      {
      /glob "*"
      /type "deny"
      }
    /0001
      {
      /glob "/content/*.html"
      /type "allow"
      }
    }
  # any header line returned from the auth_checker's HEAD request matching
  # the section below will be returned as well
  /headers
    {
    /0000
      {
      /glob "*"
      /type "deny"
      }
    /0001
      {
      /glob "Set-Cookie:*"
      /type "allow"
      }
    }
  }

 

Has anyone already been able to implement it?

1 Accepted Solution

Avatar

Correct answer by
Level 9

Hello,

This forum is dedicated to Activation - Dynamic Tag Management (DTM). For assistance with Adobe Experience Manager (AEM) please repost this question in the AEM forum here: http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manage...

Thank you,

Tacia

View solution in original post

1 Reply

Avatar

Correct answer by
Level 9

Hello,

This forum is dedicated to Activation - Dynamic Tag Management (DTM). For assistance with Adobe Experience Manager (AEM) please repost this question in the AEM forum here: http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manage...

Thank you,

Tacia