The RemoveRedundantProxyAuthorization property gets or sets a Boolean value that indicates whether the Forefront TMG Web proxy will remove all redundant Proxy-Authorization headers from requests passed to an upstream server when Basic authentication is used for authentication to the upstream server.
HRESULT put_RemoveRedundantProxyAuthorization( VARIANT_BOOL fRemoveRedundantProxyAuthorization ); HRESULT get_RemoveRedundantProxyAuthorization( VARIANT_BOOL* pfRemoveRedundantProxyAuthorization );
Pointer to a Boolean variable that is set on return to VARIANT_TRUE if the Web proxy will remove all redundant Proxy-Authorization headers from requests passed to an upstream server, or to VARIANT_FALSE if the Web proxy does not remove redundant Proxy-Authorization headers from requests passed to an upstream server.
Boolean value that specifies whether the Web proxy will remove all redundant Proxy-Authorization headers from requests passed to an upstream server.
These property methods return S_OK if the call is successful; otherwise, they return an error code.
Property RemoveRedundantProxyAuthorization As Boolean
Boolean value that indicates whether the Web proxy will remove all redundant Proxy-Authorization headers from requests passed to an upstream server.
' Create the root object. Dim root ' The FPCLib.FPC root object Set root = CreateObject("FPC.Root") ' Declare the other objects needed. Dim isaArray ' An FPCArray object Dim webProxy ' An FPCWebProxy object ' Get references to the array object ' and the Web proxy object. Set isaArray = root.GetContainingArray() Set webProxy = isaArray.ArrayPolicy.WebProxy ' Configure the Web proxy to remove all redundant Proxy-Authorization ' headers from requests passed to an upstream server when Basic ' authentication is used for authentication to the upstream server. webProxy.RemoveRedundantProxyAuthorization = True ' Save the new configuration with the fResetRequiredServices parameter set ' to True so that the Firewall service will be restarted and the change ' will take effect. webProxy.Save True
This property is read/write. Its default value is False (VARIANT_FALSE in C++).
If requests sent by Web proxy clients are forwarded to an upstream proxy server by a Web chaining rule, Integrated authentication is required on the downstream Forefront TMG computer, and Basic authentication is used for authentication to the upstream server, random authentication requests and other error messages may be displayed in the Web browser on the client computer. This problem can be resolved by configuring the downstream proxy server to remove all redundant Proxy-Authorization headers from requests passed to the upstream server.
After the value of this property has been modified, the change must be written to persistent storage by calling the Save method, and the Microsoft Firewall service must be restarted for the change to take effect. For more information about restarting the Firewall service to apply changes, see Restarting Services After Configuration Changes.
Client | Requires Windows Vista or Windows XP. |
---|---|
Server | Requires Windows Server 2008. |
Version | Requires Forefront Threat Management Gateway (TMG). |
IDL |
Declared in Msfpccom.idl. |
DLL |
Requires Msfpccom.dll. |
Send comments about this topic to Microsoft
Build date: 11/30/2009
© 2008 Microsoft Corporation. All rights reserved.