IIS + Tomcat Basic Authentication. Retrieve User information !
Hi all,
I am building a system with java servlet on Tomcat. To implement Windows Integrated Authentication and Basic Authentication I have to use IIS with ISAPI connector.
In the first case, when Windows Integrated Authentication is done, the user information is retrieved by decoding (Base64 - NTLM) the req.getHeader("Authorization").
But in Basic Authentication case, I can not decode the req.getHeader("Authorization") to get the user 's information (I do not know the format of this information - perhap it is not Base64 or NTLM).
Any idea ?
Thanks in advanced !

