I followed the instructions in the V3 Integration: I put in a reference to our database in the web.config and fixed the "Connection String" to our database. We disabled Allow anonymous. And we still get prompted for nickname. What are we missing?
Implement IHttpApplicationConnectionStringProvider interface and Let CuteChat know the database connection string
In this step, you need to implement one simple method:
//Retrieves the Cute Chat database connection string
public string GetConnectionString(CuteSoft.Chat.UserIdentity user)
Code Example
public string GetConnectionString(CuteSoft.Chat.UserIdentity user)
{
return System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];
}