I work on a server written in Java and a client (a desktop application written in .Net) that runs on Windows computers on the same network. I would like to have some basic authentication so that the server can determine the username of the user starting the client, without having to re-enter the Windows password in the client.
Is this possible, and what is the easiest way to do this?
I looked at some of the available APIs, it looks like the org.ietf.jgss package in Java and the NegotiateStream class in .Net would probably need to talk to each other to achieve this, but I keep coming across frustrating error messages which I do not understand. I thought I would check if this is correct if I post a separate question with more detailed error information :)
source share