Re: Problem in User Adapter Type

  •  04-19-2005, 1:17 PM

    Re: Problem in User Adapter Type

    When there's exception "SQL Server does not exist or access denied." , It's all because the connection string is not configurated correctly .
     
    odonel do you get problem on configuring the connection string ?

    ------------------------------------------------------------------------------

    About the DataProviderType , UserAdapterType ,
    Please check the SamplePortal\Web\CuteChatIntegration\DataProvider.cs
    It's a example to write the custom data provider :

    SamplePortal\Web\CuteChatIntegration\DataProvider.cs
    namespace SamplePortal.CuteChatIntegration
    {
       public class DataProvider : CuteSoft.Chat.DataProvider
       {
       ...
       }
    }
     

    Now , the class name is SamplePortal.CuteChatIntegration.DataProvider , and the project generate the SamplePortal.dll ,

    So in the CuteChatConfig.exe , the DataProviderType should be :
    "SamplePortal.CuteChatIntegration.DataProvider,SamplePortal"
     
    Regards , Terry .
View Complete Thread