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)

ToggleSyntax

Visual Basic (Declaration)
Property CanAcceptForwardedRequests As Nullable(Of Boolean)
C#
Nullable<bool> CanAcceptForwardedRequests { get; set; }
Visual C++
property Nullable<bool> CanAcceptForwardedRequests {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
JavaScript
function get_canAcceptForwardedRequests();
function set_canAcceptForwardedRequests(value);

ToggleRemarks

ToggleSee Also