Windows Authentication
Hi all,
I have to implement a Java web application (runing on IIS) with Windows Authentication's feature as follow:
1. If the client's Windows user has logged into a specified domain (example: AAA) then using the Intergrated Windows Authentication and user's information is retrieved for later processing.
2. If client's Windows user domain is not the specified domain (AAA) then using Basic Authentication -> the Network Password Dialog is displayed. After that the user's information is also retrieved for later processing.
I have used the JCIFS NTLM HTTP Authentication (http://jcifs.samba.org/src/docs/ntlmhttpauth.html) to implement this feature. It works fine, but I can not retrieve the user's information in the servlet application.
Any idea ?
Thanks in advance !

