How can i get the windows username of a visitor that comes to my page.
My page is coded in Java and runs in Intranet.
I know it easy to do this with aspx
(with activex i think) but how can i do this with Java.
In some topics i found some thing like this.
How to get Windows username in Java?
But these are not a solution for me because;
System.getProperty("user.name");
System.getenv("USERNAME");
gives the user name of the server which the program runs on.But i need the visitors user name.
Is there a way to do this?