Microsoft Internet Security and Acceleration Server 2004 SDK

BasicAuthentication Property of IFPCWebListenerProperties[C++]

FPCWebListenerProperties.BasicAuthentication [Visual Basic]

[C++]

The BasicAuthentication property gets or sets a Boolean value that indicates whether Basic authentication is used.

HRESULT get_BasicAuthentication(
  VARIANT_BOOL* pfBasicAuthentication
);

HRESULT put_BasicAuthentication(
  VARIANT_BOOL fBasicAuthentication
);

Parameters

pfBasicAuthentication
Pointer to a Boolean variable that is set on return to VARIANT_TRUE if Basic authentication is used, or to VARIANT_FALSE if Basic authentication is not used.
fBasicAuthentication
Boolean value that indicates whether Basic authentication is used.

Return Values

These property methods return S_OK if the call is successful; otherwise, they return an error code.

Remarks

This property is read/write.

The standard Hypertext Transfer Protocol (HTTP) method of authentication is Basic authentication. Basic authentication sends and receives user information as text characters that can be easily read. Although passwords and user names are encoded, no encryption is used with Basic authentication. The following describes the authentication procedure for Basic authentication:

  1. The client prompts the user for credentials, which consist of a user name and password.
  2. The credentials are then encoded by the client and sent to the server.
  3. The user name is verified as being an account on the ISA Server computer or in a trusted domain of the ISA Server computer.

Basic authentication can be enabled for a Web listener together with Digest authentication, Integrated authentication, and SSL certificate authentication.

[Visual Basic]

The BasicAuthentication property gets or sets a Boolean value that indicates whether Basic authentication is used.

Property BasicAuthentication As Boolean

Property Value

Boolean value that indicates whether Basic authentication is used.

Remarks

This property is read/write.

The standard Hypertext Transfer Protocol (HTTP) method of authentication is Basic authentication. Basic authentication sends and receives user information as text characters that can be easily read. Although passwords and user names are encoded, no encryption is used with Basic authentication. The following describes the authentication procedure for Basic authentication:

  1. The client prompts the user for credentials, which consist of a user name and password.
  2. The credentials are then encoded by the client and sent to the server.
  3. The user name is verified as being an account on the ISA Server computer or in a trusted domain of the ISA Server computer.

Basic authentication can be enabled for a Web listener together with Digest authentication, Integrated authentication, and SSL certificate authentication.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCWebListenerProperties