ex.
<form method="POST" enctype="multipart/form-data" action="/bin/myform">
<input type="submit" value="Submit">
</form>
servletpath=/bin/myform
--Servlet path is working on staging URL view as published mode page.
but after publishing same page in staging the servlet path is not working.
https://www.stage.example.com/test-page1
error:-
-After clicking submit button
The requested URL was not found on this server.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Vishal_S01
Mostly likely bin path will be blocked at your dispatcher
Look for default filters
eg:
You can check for this entry whether its commented or not. In case commented please add a rule allowing your specific servlet path to access via dispatcher.
Add the custom entry to the below file
/0051 { /type "allow" /url "/bin/myform" }
Hi @Vishal_S01
Mostly likely bin path will be blocked at your dispatcher
Look for default filters
eg:
You can check for this entry whether its commented or not. In case commented please add a rule allowing your specific servlet path to access via dispatcher.
Add the custom entry to the below file
/0051 { /type "allow" /url "/bin/myform" }