How apply auth restriction in JSPUI? I was wanting in JSPUI apply when the user tries to access the feedback form, the dspace require authentication, but I could not understand how the pages that require authentication as in 'mydspace' works in JSPUI.
It is possible for jsp pages? or need change java class?
The authentication requirement is set up in web.xml (link to 5.x version). It may be enough to add another filter-mapping clause for the feedback URL, eg
<filter-mapping>
<filter-name>registered-only</filter-name>
<url-pattern>/feedback</url-pattern>
</filter-mapping>
But I haven't tried it! This may not work.