Cute Live Support

Load balancing Cute Live Support

The following sections describe how to deploy Cute Live Support in a clustered environment.

By default, Load balancing support is disabled in Cute Live Support. To deploy Cute Live Support in a clustered environment, you need to have a separate server which is running in single-process mode.

This server will be used as the chat server which will handle all chat requests. All servers participate in load balancing will pass the chat requests to this single server.


Deployment architecture

Chat Server Setup.


  1. Deploy Cute Live Support to the server which is running in single-process mode.
  2. Add the following entry to web.config file:
    <add key="CuteChat.NLB" value="mode=server;password=test123;" />

Deploy Cute Live Support to all servers participate in load balancing


  1. Deploy cute chat/messenger to all servers participate in load balancing.
  2. Add the following entry to web.config file:
    <add key="CuteChat.NLB" value="mode=client;password=test123;url=http://localhost/NLBServer/CuteSoft_Client/CuteChat/NLBService.ashx" />

    In the above setting, the mode parametre should be "client", the password should match the password of chat server.
    The URL setting should be the full path of NLBService.ashx file in the chat server.