Search:

Type: Posts; User: cmdotmani@gmail.com; Keyword(s):

Search: Search took 0.03 seconds.

  1. How to write Custom WebExpressionVoter

    Can someone tell me how to write a custom WebExpressionVoter. I wrote a "RolePageDecisionVoter" that implements AccessDecisionVoter . My RolePageDecisionVoter overrides the vote method and does some...
  2. How to change the authentication object of loggedin User as another user

    Is there a way to authenticate a logged in user as another user. I want to achieve this before doing some acl operations.

    Below is the example usecase:
    When a user "A" tries to add another user...
  3. I got it fixed. Thanks Luke. Added custom...

    I got it fixed. Thanks Luke.

    Added custom WIPEvaluator that implements WebInvocationPrivilegeEvaluator

    <bean id="webInvocationFilter" class="com.mypackage.WIPEvaluator" >
    ...
  4. View Post

    <bean id="WebInvocationFilter" class="org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator" >
    <constructor-arg ref="filterInvocationInterceptor"/>
    </bean>

    <bean...
  5. Thanks Luke. my understanding: since I am not...

    Thanks Luke.

    my understanding:
    since I am not using security:http namespace, I have to register an instance of WebInvocationPrivilegeEvaluator.

    Is there a way to associate the custom bean...
  6. Question on "URL access checks in 'authorize' tags"

    I am using expression true to enable Expression-Based Access Control
    <security:filter-security-metadata-source lowercase-comparisons="true" use-expressions="true">


    In my JSP page
    ...
  7. No direct way :( Map m =...

    No direct way :(

    Map<ObjectIdentity, Acl> m = readAclsById(List<ObjectIdentity> oid, List<Sid> sids)
    then iterate the list and pick oids for my list.
  8. How do I acheive readAclBySid(List sids) ?

    Is there a way to read ACL Sid.

    I have a requirement, where I need to get ACL for my logged in user.
    I don't know Oid for these users. is there a straight way to

    readAclBySid(List<Sid> sids)...
Results 1 to 8 of 8