Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
I have a WCF service which contains a Login method that validates a username and password against the local machine credentials, and after a seemingly random period of time it will stop working for some users. The actual login command looks like this: public UserModel Login(string username, string password, string [...] read more
Within c#, I need to be able to * Connect to a remote system, specifying username/password as appropriate * List the members of a localgroup on that system * Fetch the results back to the executing computer So for example I would connect to \SOMESYSTEM with appropriate creds, and fetch [...] read more
I am hosting a WCF Web Service with IIS 6.0. My application pool is running under a local Administrator account, and I have other local users defined for accessing the Web Service. I've written the following code to validate users: //Any public static (Shared in Visual Basic) members of this [...] read more