Hi,
it seems that <add key="DatabaseType" value="OracleOleDb" /> not works for an unknown reason.
the CuteChat still want to connect to the SqlServer , so returns Keyword not supported: 'provider'.
Can you show me the error details (the stacktrace) ?
---
Another way , you can create the provider in the custom ChatProvider implementation code ,
You can try this way :
public override IAppDataProvider CreateDataProvider(CuteChat.AppPortal portal)
{
string connstr=System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];
return new CuteChat.OracleOleDbDataProvider(portal,connstr,"CuteChat4_");
}
Regards,
Terry