Its looks like I will have to try something else.
Might be a good read:
The application is a php based request tool that has two types of users, regular and admin. Regular users sign on and if they have a request/problem fill in the form and click submit. Any admins that are logged in (on separate machines) will have a pop up appear that'll say New Request Added, they sort the problem and submit a response. The theory is to stop people randomly approaching us (physically) and asking stupid questions when they fell like it. Make it electronic to allow a bit of control. And the best thing is that is works!!
However there is an issue with the signing on to the tool. Currently I have a user name and password login, admins create an account, user log on. This tool is intended for computers on a specific intranet within work. The bosses want user to login on to their desktops once and be able to have access to this tool. If a user tried to access the tool at home it would deny access.
Here was my thought. Run a batch file that is located on each workstation that retreives the hostname, user id and any other unique info that maybe of use and saves it to a text file. A browser is then launched and somehow I want the web tool to obtain the data in the text file and compare it to a db that will already contain this info. If it matches allow access if not kick em off. The difficulty I am having is passing the info to the server. I will have a think maybe Java has the answer?
I know others have had difficulty with automatic authentication and have been suggested LDAP, but I haven't a clue what this is but might be a problem getting it to every work station whereas a batch or java file would be quite simple.
thanks for the help. Very much appreciated.
Regards