Hi
Great product. I am having trouble with integrating the chat into my ASP.net 2 system.
I have a created code to create a room (lobby) for each group on the system as the group is created using the following code:
Dim lobby As New CuteSoft.Chat.CuteChatLobby()
lobby.Name = temp1.Name
Dim channel As New CuteSoft.Chat.CuteChatChannel()
CuteSoft.Chat.ChatApi.CreateLobby(lobby)
Once the room is created it is linked it to an embedded page via the Location (Lobby) and LocationId which is the LobbyId in the CuteChatLobby table.
This works fine most times but often I get the error message:
Please wait, connecting to server...
The connection to the chat server is lost. Lobby not found!
When this happens the Connect button flashes Connect/Cancel repeatedly.
It is intermittent.
Any ideas.
Patrick