Topic Last Modified: 2013-02-21

The Lync Server 2013, Persistent Chat Server endpoint provides a way to create a simple URL that points to a Persistent Chat Server pool. This is useful for legacy clients (Microsoft Office Communications Server 2007 R2 Group Chat Server or Lync Server 2010, Group Chat) because users can enter a simple URL in the manual configuration when trying to point the legacy client to a computer running Lync 2013, Persistent Chat. This endpoint isn’t used by Persistent Chat, and is required for legacy clients only. This is useful for the interim period where rooms may be migrated, but the Lync 2013 clients have not been deployed throughout the organization. Users running Lync 2010 Group Chat (client) can then still connect to the Persistent Chat Server Back End Server.

You don’t need to create multiple Persistent Chat Server endpoints; you just need one for each Persistent Chat Server pool. Administrators can create multiple endpoints (one per pool), but legacy clients can be configured to connect to only one pool at a time. In the usual or mainstream scenario, the legacy deployment is one pool only. A new deployment generally migrates that pool to a new Lync Server 2013 and might add some new additional Persistent Chat Server pools.

This mainstream scenario generally follows this pattern:

For details about migrating from Lync Server 2010, Group Chat to Lync Server 2013, Persistent Chat Server, see Migration from Lync Server 2010, Group Chat or Office Communications Server 2007 R2 Group Chat to Lync Server 2013, Persistent Chat Server.

To run backward compatibility (to create a Persistent Chat Server endpoint that points to a Persistent Chat Server pool, which can be used by legacy Group Chat pool clients):

Copy Code
New-CsPersistentChatEndpoint -SipAddress <CO name, ex. persistentchat@contoso.com> -PersistentChatPoolFqdn <pool FQDN, like pcpool.contoso.com>

Next, configure Persistent Chat clients to use that SIP address as their contact object. The SIP address is created with the New-CsPersistentChatEndpoint cmdlet for a specific Persistent Chat Server pool.

To add the Persistent Chat Server endpoint by using Windows PowerShell command-line interface, consider the following example. In this case, you are configuring the contact object to be named "persistentchat" on the "contoso.com" topology, where the pool fully qualified domain name (FQDN) is "pcpool.contoso.com":

Copy Code
New-CsPersistentChatEndpoint -SipAddress sip:persistentchat@contoso.com -PersistentChatPoolFqdn pcpool.contoso.com

See Also