Holds the EJB forwarding URI endpoint for a VirtualServer. This property must specify a valid URI in order for the virtual servers within a site to receive forwarded requests.

A VirtualServer is the only addressable unit for forwarded requests. A VirtualServer must provide connection strings so that a remote server can connect to it. You supply this connection information in the EJBForwardingEndpoint property. If this property is empty, it is assumed that the administrator does not want the VirtualServer to accept forwarded requests. Request forwarding will not occur even if the Site is configured to accept forwarded requests via its CanAcceptForwardedRequests property.

The following are URI examples for the specified application server environments (host name can be specified as the name or IP address):

  • WebLogic - "t3://10.15.14.28:7001/FileNet/Engine"
  • Websphere - "iiop://localhost:2809/FileNet/Engine"
  • JBoss - "Jnp://localhost:1099/FileNet/Engine"

The maximum length of the URI string is 2083 characters.


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

Syntax

Visual Basic (Declaration)
Property EJBForwardingEndpoint As String
C#
string EJBForwardingEndpoint { get; set; }
C++
property string EJBForwardingEndpoint abstract  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_EJBForwardingEndpoint();

/** property */
public void set_EJBForwardingEndpoint(string value);
JScript
public function get EJBForwardingEndpoint() : String

public function set EJBForwardingEndpoint(value : String);

Remarks

See Also