I'm trying to invoke a webservice from a console application, and I need to provide the client with a System.Net.NetworkCredential object.
Is it possible to create a NetworkCredential object for the user that started the application without prompting for username/password?

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

If the web service being invoked uses windows integrated security, creating a NetworkCredential from the current WindowsIdentity should be sufficient to allow the web service to use the current users windows login. However, if the web service uses a different security model, there isn't any way to extract a users password from the current identity...that in and of itself would be insecure, allowing you, the developer, to steal your users passwords. You will likely need to provide some way for your user to provide their password, and keep it in some secure cache if you don't want them to have to repeatedly provide it.

Edit: To get the credentials for the current identity, use the following:

Uri uri = new Uri("http://tempuri.org/");
ICredentials credentials = CredentialCache.DefaultCredentials;
NetworkCredential credential = credentials.GetCredential(uri, "Basic");
link|improve this answer
How can you create a NetworkCredential from a WindowsIdentity? – Paolo Tedesco Jun 4 '09 at 9:05
3  
Thanks! I just used CredentialCache.DefaultNetworkCredentials. – Paolo Tedesco Jun 4 '09 at 9:44
Ah! I never noticed there was such a property, but thanks! I can use that myself from now on. :D – jrista Jun 4 '09 at 9:47
Does the GetCredential method return credentials from the stored user names and passwords in Windows XP/2003/Vista/2008? I asked a related question here: stackoverflow.com/questions/994232/… If GetCredential retrieves credentials from the store based on the uri & authentication type, I'll have my answer. I will test this and report back... – Jim Harte Jun 15 '09 at 3:04
GetCredentials will only return a credential for the currently logged on user, that may be used to authenticate with the given Uri using the specified authentication method. To my knowledge, GetCredential doesn't actually get any usernames or passwords from windows...it just creates a NetworkCredential instance for the current windows user. – jrista Jun 15 '09 at 4:51
show 5 more comments
feedback

You can get the user name using System.Security.Principal.WindowsIdentity.GetCurrent() but there is not way to get current user password!

link|improve this answer
2  
I do hope that there's no way of getting the current user password! :) What I would like to do is to use the 'current credentials' as a default for the web service. – Paolo Tedesco Jun 4 '09 at 9:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.