Does anyone know of a good wrapper for the Windows ADSI libraries for Java?
(I'm trying to avoid writing my own in JNA - and I'd like to use something standard.)
|
|
|
|
|
|
|
Not much in the way of well-supported libraries for ADSI-java exists out there. If you want support and the substance of what you're trying to achieve - then Spring's Acegi library will assist your active directory authentication of your web-app: http://www.acegisecurity.org/ If you want an active directory authentication for your web service - then try this: http://stackoverflow.com/questions/325637/secure-java-soap-web-service-active-directory-authentication-trust (again a Spring security based solution) To purely wrap the ADSI library itself - you could use JNA: https://jna.dev.java.net/ Other implementations out there include:
|
||
|
|