Hi All,I would like to refine the post method configuration on
dispatcher filters. So ,the idea is to block all the post methods in my
repository on adding the below condition.//001 {/type "deny" /method
"POST" /url "/content*"}The above filter blocks the entire post methods
present in my content content . So ,I need to allow only the required
post methods present on my project.//002 {type "allow" /method "POST"
url "/content/[.]*.html"}Adding on the above filter would be allowing
the required p...