Determines if a Site accepts forwarded requests. The value of this property is True if the Site accepts forwarded requests; otherwise, it is False (the default). The property value must be explicitly set to True when configuring the domain for request forwarding.

Request forwarding must be enabled at the site level (both for forwarding requests and for receiving forwarded requests), and each virtual server within the site must have a valid URI specified in its EJBForwardingEndPoint property for it to be able to receive forwarded requests.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property CanAcceptForwardedRequests As Nullable(Of Boolean)
C#
Nullable<bool> CanAcceptForwardedRequests { get; set; }
C++
property Nullable<bool> CanAcceptForwardedRequests abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_CanAcceptForwardedRequests();

/** property */
public void set_CanAcceptForwardedRequests(Nullable<boolvalue);
JScript
public function get CanAcceptForwardedRequests() : Nullable<bool>

public function set CanAcceptForwardedRequests(value : Nullable<bool>);

Remarks

See Also