Edit

Share via


ApplicationEndpointSettings.IsDefaultRoutingEndpoint Property

Definition

Gets the flag that indicates whether this endpoint is marked as default endpoint to handle incoming requests that are not routable to other endpoints.

public:
 property bool IsDefaultRoutingEndpoint { bool get(); void set(bool value); };
public bool IsDefaultRoutingEndpoint { get; set; }
member this.IsDefaultRoutingEndpoint : bool with get, set
Public Property IsDefaultRoutingEndpoint As Boolean

Property Value

Remarks

Default routing endpoint is meant for handling all requests received by the collaboration platform for which a matching endpoint could not be found. Common usages of this type of endpoint include:

  • handling of incoming requests targetting a trusted service (i.e. using GRUU supplied in the platform as destination uri),
  • processing incoming calls for endpoints that have already been terminated (e.g. to play back "service unavailable" announcements),
  • handling calls coming from different remote sip peers (Communication Server or Others) destined to one unique service and thus relaxing a strict platform routing logic based on the destination-owner uri matching.

For a given instance of the CollaborationPlatform, only one endpoint can be a maked as default routing endpoint.

Applies to