How do i get the user Windows desktop login id to the web interanet application without authentication using java/j2ee and websphere community edition app server running on linux. Are there any third party tools to do this?
I have to do this without login page (like in dot net Request.ServerVariables("AUTH_USER") ) I have tried using System.getProperty("user.name") and request.getRemoteUser() These doesn't worked for my requirements.
I'm sorry, but I'm confused by the explanation of what it is you want.
User U is on machine C (client) User starts browser, and directs to machine W (web server), which because of the URL connects to machine A (AppServer), sending the request.
What "userid" do you want to be used?
Userid U from machine C?
Have you considered using cookies on the users machine to save the userid when the user returns to the page?
I want the User U's userid on Machine C to the App Server A running on the Linux
Requirement is not to show the login dialog even for the first time user, My last option left was using the JavaScript ActiveXObject("WScript.Shell"); I tried using the other options.