You could implement the CuteSoft.Chat.ConnectionStringProvider , and register it in web.config as :
<configuration>
<appSettings>
<add key="CuteChat.ConnectionStringProvider" value="YourNS.YourConnectionProvider,YourAssembly"/>
</appSettings>
</configuration>
the could should be
namespace YourNS
{
public class YourConnectionProvider : CuteSoft.Chat.ConnectionStringProvider
{
protected override string GetConnectionString(CuteSoft.Chat.UserIdentity user)
{
return System.Configuration.ConfigurationSettings.AppSettings["YourConnectionKey"];
}
}
}
The integration documentation would be available next week .
--------
About the skins , do you get any script error messages ?
Regards , Terry .