Skip to main content
Level 2
August 26, 2026
Question

Dispatcher filter rule to allow DELETE method is not working on AEMaaCS

  • August 26, 2026
  • 2 replies
  • 32 views

Hi, I have a Dispatcher filter rule to allow for DELETE method for a specific url path. 

It works fine on my local AEM instance Dispatcher. The same errors out “406 Not Acceptable”

Can you please suggest a fix for the AEMaaCS environment?

The following is how the rule looks in the sites_filters.any file.

/0123 { /type "allow" /method "DELETE" /url "/service/xyz.json”

 

2 replies

ViaVuAuthor
Level 2
August 27, 2026

After troubleshooting AEMaaCS dev environment, it was identified that the CDN was not allowing DELETE operation.

Level 2
September 5, 2026

Hi ​@ViaVu ,

Can you help me to understand in more detail what you are trying to fix or delete? Like, is it internal AEM application data or 3rd party data?

Right now, from limited data, what I'm thinking of is doing the servlet post call to the custom endpoint and internally performing delete operations

EG: POST /service/xyz.json?action=delete or POST /service/xyz/delete
/0123 { /type "allow" /method "POST" /url "/service/xyz/delete" }