IUpdateServerConfiguration.AllowProxyCredentialsOverNonSsl Property
Applies To: Windows Server Update Services
Gets or sets whether user credentials can be sent to the proxy server using HTTP instead of HTTPS.
Namespace: Microsoft.UpdateServices.Administration
Assembly: Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)
Syntax
bool AllowProxyCredentialsOverNonSsl { get; set; }
property bool AllowProxyCredentialsOverNonSsl {
bool get();
void set(bool value);
}
abstract AllowProxyCredentialsOverNonSsl : bool with get, set
Property AllowProxyCredentialsOverNonSsl As Boolean
Property Value
Type: System.Boolean
If true, allows user credentials to be sent to the proxy server using HTTP; otherwise, the user credentials are sent to the proxy server using HTTPS.
Remarks
By default, WSUS uses HTTPS to access the proxy server. If HTTPS is not available and AllowProxyCredentialsOverNonSsl is true, WSUS will use HTTP. Otherwise, WSUS will fail. Note that if WSUS uses HTTP to access the proxy server, the credentials are sent in plaintext.
User credentials are used only if UseProxy is true and AnonymousProxyAccess is false.
See Also
IUpdateServerConfiguration Interface
Microsoft.UpdateServices.Administration Namespace
Return to top