Hello,
Currently (and for the last several years) my application has connected to the clients server using a username and password that is stored in a config file. There is a call made to AuthenticationClient's AuthenticateUser function to get a token, and that token is then applied to the DocumentManagementClient's AuthenticationToken property.
The client is now questioning whether or not it is possible to use a domain user's account within their system for the calls to ContentServer, rather than the stored user/pass. That domain user would have access to login via the web based interface of ContentServer itself. The flow is the user is logged into the domain and accesses a web based application. That app sends a request to the windows service in question to retrieve a document from ContentServer.
Is there any method availble to take a domain user and generate a token to allow my service to access the server using domain credentials rather than the stored custom account that it currently uses?