CreateAnAJAXBasedFileuploadProgressbarDialog |
|
Your trail: |
Difference between
version 45
and
version 44:
At line 204 changed 1 line. |
Update the file {{< Your project folder >\web\WEB-INF\security.xml}} to allow annonymous access to the file {{/scrips/engine.jsp}}. Find the element starting with {{<bean id="filterInvocationInterceptor" ...}} |
Update the file {{< Your project folder >\web\WEB-INF\security.xml}} to allow annonymous access to the file {{/scrips/engine.jsp}}. Find the element starting with {{{<bean id="filterInvocationInterceptor" ...}}}. And add the line {{{/scripts/engine.jsp*=ROLE_ANONYMOUS,admin,user}}} as the last line of the {{{<value>}}} descendent tag. The content should now be: |
{{{ |
<bean id="filterInvocationInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor"> |
<property name="authenticationManager" ref="authenticationManager"/> |
<property name="accessDecisionManager" ref="accessDecisionManager"/> |
<property name="objectDefinitionSource"> |
<value> |
PATTERN_TYPE_APACHE_ANT |
/clickstreams.jsp*=admin |
/flushCache.*=admin |
/passwordHint.html*=ROLE_ANONYMOUS,admin,user |
/reload.*=admin |
/signup.html*=ROLE_ANONYMOUS,admin,user |
/users.html*=admin |
/**/*.html*=admin,user |
/scripts/engine.jsp*=ROLE_ANONYMOUS,admin,user |
</value> |
</property> |
</bean> |
}}} |
At line 207 removed 1 line. |
|
Back to CreateAnAJAXBasedFileuploadProgressbarDialog,
or to the Page History.
|