


Working fine on author mode but not in Dispatcher level
I want to allow servlet path in publisher domain sample like:
"/bin/customproject/mylink?myId=178462736472364762"
In dispatcher configuration on filter.any file
added new rule with
# Allow my link Path
/01 { /type "allow" /url "/bin/mysites/*"}
but showing 404 in publish any reference?
Solved! Go to Solution.
Views
Replies
Total Likes
HI,
I would suggest to register a servlet via resourceType but path.
Use a selector and extension during servlet registration and allow those from dispatcher.
But answering your original question, Add this at very last or before deny rules
# Allow my link Path
/010 { /type "allow" /path "/bin/customproject/mylink"}
HI,
I would suggest to register a servlet via resourceType but path.
Use a selector and extension during servlet registration and allow those from dispatcher.
But answering your original question, Add this at very last or before deny rules
# Allow my link Path
/010 { /type "allow" /path "/bin/customproject/mylink"}