Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a little odd situation that needs some help from experts like you.

We are an internal webapp (within the company) that is set as Windows Authentication. The site captures the user perfectly.

Now, there is one feature that we validate some other websites' headers by using the anonymous user account. So the following codes are not working:

    _response = null;
    HttpWebRequest _request = (HttpWebRequest)WebRequest.Create(uri);
    _request.Method = "GET";
    _request.AllowAutoRedirect = true;
    _request.Accept = "*/*";
    _request.MaximumAutomaticRedirections = 4;
    _request.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;

The System.Net.CredentialCache.DefaultNetworkCredentials is using as the current logged in user account, not anonymous account that we would like. How do I provide the anonymous account in this case?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.