How domain logons are made in HttpWebRequest requests

Source: Internet
Author: User

An issue in which a request cannot succeed when a job encounters an address in a different domain

Looked up a lot of information, basically said the following two points

(1). HttpWebRequest request = new HttpWebRequest ();

Request. Userdefaultcredentials = true;//default use of login credentials

(2).

Request. Credentials = new NetworkCredential ("username", "password");

Username,password Account for domain login

Both of these failed to solve the problem.

It was later found that the NetworkCredential constructor has 5 overloads

First, public networkcredential ();

Initializes a new instance of the System.Net.NetworkCredential class with the specified user name and password.
Ii. public NetworkCredential (string userName, SecureString password);

Initializes a new instance of the System.Net.NetworkCredential class with the specified user name and password.
Iii. public NetworkCredential (String userName, string password);
  
Initializes a new instance of the System.Net.NetworkCredential class with the specified user name, password, and domain.
Iv. public NetworkCredential (string userName, SecureString password, string domain);

Initializes a new instance of the System.Net.NetworkCredential class with the specified user name, password, and domain.
V. Public NetworkCredential (string userName, string password, string domain);

Because the encryption method is not used, the 5th overload has the parameter domain, that is, the login domain name, use, problem resolution.

Request. Credentials = new NetworkCredential ("username", "password", "domain");

How domain logons are made in HttpWebRequest requests

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.