Hi ,
Atlast it works.....
Actually i need to pick up UserRoleName properly as per my ldap attributes
... which is not done in my initial settings.
<Realm className="org.apache.catalina.realm.JNDIRealm"
connectionURL="ldap://server:389"
connectionName="uid=admin,ou=Directory
Administrators,dc=example,dc=com"
connectionPassword="secret"
userBase="ou=domain,dc=example,dc=com"
userSubtree="true"
userSearch="(uid={0})"
userRoleName="memberOf"
roleBase="OU=example3,OU=example1,DC=domian,DC=example2,DC=com"
roleName="cn"
roleSubtree="true"
roleSearch="(member={0})"
/>
The below 4-5 line needs to be write very carefully ...... which help us to
pick up role-name for web.xml.
Thanks for your quick response
Regards,
Trupti Patil
TruptiP wrote:
>
> Hi,
>
> I have installed JSPWiki 2.8.1 on my desktop machine. It works fine when I
> use default userdatabase for authentication and authorization.
>
> Now I am using LDAP authentication .... I used below specifications in
> server.xml
>
> <Realm className="org.apache.catalina.realm.JNDIRealm"
> connectionURL="ldap://server:389"
> connectionName="uid=admin,ou=Directory
> Administrators,dc=example,dc=com"
> connectionPassword="secret"
> userBase="ou=domain,dc=example,dc=com"
> userSubtree="true"
> userSearch="(uid={0})"
> />
>
> In web.xml of JSPwiki
>
> <security-constraint>
> <web-resource-collection>
> <web-resource-name>Authenticated area</web-resource-name>
> <url-pattern>/Edit.jsp</url-pattern>
> <url-pattern>/Comment.jsp</url-pattern>
> <url-pattern>/Login.jsp</url-pattern>
> <url-pattern>/NewGroup.jsp</url-pattern>
> <url-pattern>/Rename.jsp</url-pattern>
> <url-pattern>/Upload.jsp</url-pattern>
> <url-pattern>/Delete.jsp</url-pattern>
> <http-method>DELETE</http-method>
> <http-method>GET</http-method>
> <http-method>HEAD</http-method>
> <http-method>POST</http-method>
> <http-method>PUT</http-method>
> </web-resource-collection>
>
> <web-resource-collection>
> <web-resource-name>Read-only Area</web-resource-name>
> <url-pattern>/attach</url-pattern>
> <http-method>DELETE</http-method>
> <http-method>POST</http-method>
> <http-method>PUT</http-method>
> </web-resource-collection>
>
> <auth-constraint>
> <role-name>Authenticated</role-name>
> </auth-constraint>
>
> When I login in jspwiki I get forbidden page and after pressing "back" tab
> and refresh my login is shown as authenticated.... But I am only able to
> view the pages when I go to edit the page
>
> G’day (anonymous guest) will be displayed at corner and it not
> authenticate me to update the page. I haven't use any ACL's in any page. I
> have given all authorization to authenticated user.
>
> One more important point is I dont have any group in LDAP.
>
--
View this message in context:
http://www.nabble.com/LDAP-authentication-problem-for-jspwiki-2.8.1-on-windows-machine-tp21473087p21477816.html
Sent from the JspWiki - User mailing list archive at Nabble.com.