G
Guest
Hi Folks
I have made an asp.net page for our intranet which submits bugs into Team
Foundation Server. So that the bugs appear to be raised by the person who is
browsing the page I have created an instance of TeamFoundationServer by
passing in the CredentialCache.DefaultCredentials:
ICredentials c = CredentialCache.DefaultCredentials;
_tfServer = new TeamFoundationServer(_serverName, c);
Unfortunately, the CredentialCache.DefaultCredentials do not always tie up
to the current user.
Is there a way I can get the credentials of the current browser without
having to prompt them to enter their username and password?
Thanks
I have made an asp.net page for our intranet which submits bugs into Team
Foundation Server. So that the bugs appear to be raised by the person who is
browsing the page I have created an instance of TeamFoundationServer by
passing in the CredentialCache.DefaultCredentials:
ICredentials c = CredentialCache.DefaultCredentials;
_tfServer = new TeamFoundationServer(_serverName, c);
Unfortunately, the CredentialCache.DefaultCredentials do not always tie up
to the current user.
Is there a way I can get the credentials of the current browser without
having to prompt them to enter their username and password?
Thanks