Post method with html extensions | Community
Skip to main content
Level 3
February 16, 2021
Solved

Post method with html extensions

  • February 16, 2021
  • 2 replies
  • 1688 views

Hi All,

I need to block my post configuration on aem dispatcher first and allow only required selectors with extensions on the dispatcher filters.

So, could you please suggest on the way or whether the below filter will allow the post method with html extensions for configuring into the dispatcher.

 

//001 { /type "allow" /method "POST" /url "/content/[.]*.html}

Thanks in advance.

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Sanket_Kumbharkhane

Hi @keerthi97 ,

 

if you use the below 1st rule in your filters. any file

/0001 { /type "deny"  /url "*" }

It will deny everything for you including Get and Post [comes as the best practices]

 

and after that, you can allow POST requests.

 

Here are few examples to allow the post method with html & json extension

## allow POSTs to form selectors under content

/0002 { /type "allow" /method "POST" /url "/content/[.]*.form.html" }

 

## allow POSTs to update the shopping cart

/0003 { /type "allow" /method "POST" /path "/content/[.]*.commerce.cart.json" } 

 

 

/filter { /0001 { /type "deny" /url "*" } /0002 { /type "allow" /method "POST" /url "/content/[.]*.form.html" } /0003 { /type "allow" /method "POST" /path "/content/[.]*.commerce.cart.json" } }

 

 

2 replies

Sanket_Kumbharkhane
Sanket_KumbharkhaneAccepted solution
Level 4
February 16, 2021

Hi @keerthi97 ,

 

if you use the below 1st rule in your filters. any file

/0001 { /type "deny"  /url "*" }

It will deny everything for you including Get and Post [comes as the best practices]

 

and after that, you can allow POST requests.

 

Here are few examples to allow the post method with html & json extension

## allow POSTs to form selectors under content

/0002 { /type "allow" /method "POST" /url "/content/[.]*.form.html" }

 

## allow POSTs to update the shopping cart

/0003 { /type "allow" /method "POST" /path "/content/[.]*.commerce.cart.json" } 

 

 

/filter { /0001 { /type "deny" /url "*" } /0002 { /type "allow" /method "POST" /url "/content/[.]*.form.html" } /0003 { /type "allow" /method "POST" /path "/content/[.]*.commerce.cart.json" } }

 

 

Keerthi97Author
Level 3
February 16, 2021

Hi @sanket_kumbharkhane ,

In the case of allowing post method with html extensions ,whether it is possible to give filter condition as mentioned in my question.

Level 2
March 4, 2021

Hi @sanket_kumbharkhane ,

In my scenario, I am having post servlet calls modified in the form of resource types instead of /bin/, so could you please suggest some filters to refine and allow the POST servlets present in my project. Also , there are no identical selectors used in forms present in my application.

 

Thanks for your help