Chat System Not Initialized

  •  07-10-2011, 11:45 PM

    Chat System Not Initialized

    Hi,
     
    I'm Mahesh. I tried to use Live support.  When i tried it in local intranet, by uploading it in localhost, it works fne. But when the same sytem hosted in our web serve, it shows the error message, chat system not initialized. It works fine in intranet. Will you please help me?
     
    Global.asax already contains the code,
    public override void Init()
    {
    base.Init();
    lock(typeof(CuteChat.ChatSystem))
    {
    if(!CuteChat.ChatSystem.HasStarted)
    {
    CuteChat.ChatProvider.Instance=new ExampleProvider();
    CuteChat.ChatSystem.Start(new CuteChat.AppSystem());
    }
    }
    }
     
    I can't sort out the prblm.. Please help me.. 
View Complete Thread