Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
6k views

Using DefaultCredentials and DefaultNetworkCredentials

We're having a hard time figuring how these credentials objects work. In fact, they may not work how we expected them to work. Here's an explanation of the current issue. We got 2 servers that needs ...
4
votes
2answers
894 views

DefaultNetworkCredentials or DefaultCredentials

Which one am I supposed to use when I need to supply a credential to a proxy (local or in Network)? What's the exact difference between these two?
3
votes
2answers
3k views

How do you get credentials (NetworkCredential) of currently logged in user?

I'm writing some code to utilise a 3rd party component, and I need to supply an object which implements ICredentials when I start to use it. If I write the following... var credential = new ...
2
votes
3answers
1k views

How to get Alfresco login ticket without user password, but with impersonating user with user principal name (UPN)

I'm writing a DLL that has function for getting Alfresco login ticket without using user password, using only a user principal name (UPN). I’m calling alfresco REST API service /wcservice. I use NTLM ...
0
votes
1answer
92 views

How to pass credentials from one web service to another?

I currently have an app that calls a web service(WS1), which in turn calls another web service(WS2) to get/set information on the server hosted on WS2. I would like to be able to pass in the user ...
0
votes
0answers
79 views

Passing Windows Authentication from WPF Application to MVC Website

Is it possible to pass the System.Net.CredentialCache.DefaultCredentials (WPF Application) to a MVC website for authentication? I want the user to be able to go to a URL (using a Frame in WPF) ...
0
votes
1answer
89 views

Using credentials for access control in C#

I have a SOAP -> web service structure, using C#. I have IIS - windows authentication turned on so I am adding the DefaultNetworkCredentials to the ClientCredentials in my service instance. I am ...
0
votes
1answer
318 views

NetworkCredential, CredentialCache, ICredentials All return Nothing

I have a Windows Form app and it keeps returning a 407 Proxy Server error when I try and return a JSON string from the Google servers. I have been led to believe that all I need to do is set the ...
0
votes
0answers
683 views

Call a web-service under current user credentials

I have a custom WCF web-service confugured with windows authentication and a WPF client application that needs to call the former. The service checks the username and pull some specific data from a ...
0
votes
2answers
303 views

WebRequest is getting generated from another IP instead my system IP?

I have the following code which bypass the proxy server for local machine and then send a WebRequest. System.Net.HttpWebRequest Request; System.Net.WebResponse ...
0
votes
1answer
392 views

ASMX: Setting User/Password at run-time

When I want to connect to my web service If I write it like this: m_TransferServiceSoap.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials; it is working. but I need a Login Form. ...
0
votes
1answer
1k views

when using “default proxy” where does the username/password come from?

The "WebClient" class (and ClickOnce also) can use default proxy settings (e.g. put in application.config), however: Where does the username / password come from? (I can't see a setting in the XML ...
0
votes
3answers
886 views

DefaultNetworkCredentials has null values. Need to prompt user… how?

Under certain circumstances my desktop app using SharePoint web services ends up with DefaultNetworkCredentials having null values, and so the call fails. I need to then obtain the users credentials, ...