xpages - 'Admin' user getting redirected to $$LoginUserForm -
i have user, admin mustermann/magerman, defined editor person in acl of application , has role [admin].
after logging in can see that user has role [admin].
but whenever try access admin.xsp page, getting redirected $$loginuserform of database.
the admin.xsp page controlled following acl access:
<xp:this.acl> <xp:acl> <xp:this.entries> <xp:aclentry type="default" right="noaccess"> </xp:aclentry> <xp:aclentry type="role" right="editor" name="[admin]" fullname="admin"> </xp:aclentry> </xp:this.entries> </xp:acl> </xp:this.acl>
i've tried following syntax:
<xp:aclentry type="role" right="editor"> <xp:this.name><![cdata[[admin]]]></xp:this.name> <xp:this.fullname><![cdata[[admin]]]></xp:this.fullname> </xp:aclentry>
but no avail.
update: i'm no longer sure has acl entries on xpage itself. once removed them, land page xpages debug toolbar shows 'anonymous'.
i should mention i'm using 2 directories authentication (with directory assistance).
i don't know if related, xpages debug toolbar unresponsive (i.e. click on headers nothing happens).
is there way of letting me track whole authentication procedure server doing? server log not talky.
i wonder why set acl options xpage @ all. never used , when did (when started xpages) faced problems entries disturbed general acl settings when should refine them. never used them later. if want restrict access special page can workaround doing scripting in beforepageload event. check roles , access , - if needed - redirect page.
Comments
Post a Comment