Solved
How to allow filter for both methods POST/GET for servlet in dispatcher.any config
To allow POST and GET for servlet I need this:
{ /type "allow" /glob "GET /servlets/Test" } { /type "allow" /glob "POST /servlets/Test" }or to use "*":
{ /type "allow" /glob "* /servlets/Test" }Is there any option to specify POST and GET in one row?
