Microsoft Internet Security and Acceleration Server 2004 SDK

CARPNameSystem Property of IFPCWebProxy[C++]

FPCWebProxy.CARPNameSystem [Visual Basic]

[C++]

The CARPNameSystem property gets or sets a value from the FpcNameSystem enumerated type that specifies whether the ISA Server Web proxy is to use the Domain Name System (DNS) name lookup system or the Windows Internet Name Service (WINS) name lookup system for the Cache Array Routing Protocol (CARP).

Note  This property is available only for an array in ISA Server Enterprise Edition. It is not available for a stand-alone server, or for ISA Server Standard Edition.

HRESULT get_CARPNameSystem(
  FpcNameSystem* pNameSystem
);

HRESULT put_CARPNameSystem(
  FpcNameSystem NameSystem
);

Parameters

pNameSystem
Pointer to a value from the FpcNameSystem enumerated type that is set on return to fpc_NameSystem_DNS if the DNS name lookup system is to be used for CARP, or to fpc_NameSystem_WINS if the WINS name lookup system is to be used for CARP.
NameSystem
Value from the FpcNameSystem enumerated type that is set to fpc_NameSystem_DNS if the DNS name lookup system is to be used for CARP, or to fpc_NameSystem_WINS if the WINS name lookup system is to be used for CARP.

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.

Setting this property correctly is important because some computers do not have WINS names and will not work in CARP if DNS name lookup is not enabled.

After the value of this property has been changed, and the change has been saved by calling the Save method, the Microsoft Firewall service must be restarted for the change to take effect. The Firewall service can be restarted by calling the IFPCArray::RestartServices method.

[Visual Basic]

The CARPNameSystem property gets or sets a value from the FpcNameSystem enumerated type that specifies whether the ISA Server Web proxy is to use the Domain Name System (DNS) name lookup system or the Windows Internet Name Service (WINS) name lookup system for the Cache Array Routing Protocol (CARP).

Note  This property is available only for an array in ISA Server Enterprise Edition. It is not available for a stand-alone server, or for ISA Server Standard Edition.

Property CARPNameSystem As FpcNameSystem

Property Value

Value from the FpcNameSystem enumerated type that is set to fpc_NameSystem_DNS if the DNS name lookup system is to be used for CARP, or to fpc_NameSystem_WINS if the WINS name lookup system is to be used for CARP.

Remarks

This property is read/write.

Setting this property correctly is important because some computers do not have WINS names and will not work in CARP if DNS name lookup is not enabled.

After the value of this property has been changed, and the change has been saved by calling the Save method, the Microsoft Firewall service must be restarted for the change to take effect. The Firewall service can be restarted by calling the FPCArray.RestartServices method.

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

FPCWebProxy