HttpWebRequest and SSL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When using HttpWebRequest with an 'https' address, does it automatically
encrypt the data being sent or are there additional steps that need to be
taken?
 
Glenn said:
When using HttpWebRequest with an 'https' address, does it automatically
encrypt the data being sent or are there additional steps that need to be
taken?

Yes, it does still encrypt the data being sent via the SSL pipe and you
need to associate a NetworkCredential to your
HttpWebRequest.Credentials property that has a valid UserName and
Password defined.
 
Thus wrote js,
Yes, it does still encrypt the data being sent via the SSL pipe and
you need to associate a NetworkCredential to your
HttpWebRequest.Credentials property that has a valid UserName and
Password defined.

The latter is only necessary for HTTP Authentication.

Cheers,
 
Joerg said:
Thus wrote js,


The latter is only necessary for HTTP Authentication.

Cheers,


Yup...no arguments there. Jumped to the conclusion that he would
require authentication.

My bad.

J.
 
Back
Top