Thanks Adam - I have the following, which works fine in our dev environment?
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
Try
If Not (CuteChat.ChatSystem.HasStarted) Then
CuteChat.ChatProvider.Instance =
New Redstrand.Components.LoveLifeChatProvider()
CuteChat.ChatSystem.Start(
New CuteChat.AppSystem())
End If
Catch ex As Exception
End Try
End Sub