Click here to Skip to main content
15,884,388 members
Articles / Web Development / ASP.NET

Build a Web based Chat using ASP.NET Ajax

Rate me:
Please Sign up or sign in to vote.
4.68/5 (42 votes)
24 Feb 2010CPOL2 min read 261.4K   19.6K   167   70
Build a GMail like web based chat using ASP.NET Ajax that can handle several requests and simultaneous users
SampleChat
Screenshot of a conversation using the chat

Introduction

I will show you how to build a Web-based chat using ASP.NET 2.0/3.5, ScriptServices and a SQL Server database, that can handle several requests and simultaneous users.

The source provided is pretty much ready to be copied and pasted into any 3.5 web application.

Requirements

  • The chat application must be HTTP-based. No other protocol allowed.
  • The application must allow multiple chat rooms.
  • The user can leave the room without notifying the application.
  • The list of chatters in the room must reflect the latest changes with a delay not greater than (for example) 5 seconds.
  • The messages list must be retrieved with a delay not greater than (for example) 2 seconds.

Application State

As in HTTP the connection is closed after a single request/response pair, you have to simulate the status of being connected to the chat room. I accomplish that by having an application state object of the chat users. Also, as you don't have a notification when the user is disconnected, you will have to check regularly for the latest activity from the user in order to manually remove it from the chat users list.

C#
public void ValidateUsers(TimeSpan maxInterval)
{
    List<int> toDelete = new List<int>();
    foreach (System.Collections.Generic.KeyValuePair<int> keyValue in this.Users)
    {
        //Identify which users don't have recent activity
        if (DateTime.Now.Subtract(keyValue.Value.LastActivity) > maxInterval)
        {
            toDelete.Add(keyValue.Key);
        }
    }
    //Remove them from the current users list
    //...
}        

Ajax Enabled Webservice

The Ajax service exposes four methods:

  • EnterRoom: It assigns the user to the chat room by adding the user to the room users list.
  • CheckMessages: It's responsible to get the latest message from the database and check the users list.
  • SendMessage: It saves the message and checks the users list, returning the latest messages.
  • CheckUsers: It validates all the users list from the chat room by getting the latest activity from the users and, if the list changed, returns the new users list.

Client Scripting

The client script is responsible to refresh the list of messages on the screen by using setTimeout to Ajax calls.

Here you can see the JavaScript that makes the request to the webservice and its callbacks.

JavaScript
Codeproject.Chat.EnterRoom = function()
{
    //Calls the web service to enter the chat
    SampleChat.Chat.Services.ChatService.EnterRoom(Codeproject.Chat.RoomId,
        Codeproject.Chat.EnterRoomCallback);
}
//EnterRoom Callback
Codeproject.Chat.EnterRoomCallback = function(lastMessageId)
{
    //Store the last message id in a JavaScript global variable
    Codeproject.Chat.LastMessageId = lastMessageId;
    //Remove the loading message
    Codeproject.Chat.MessagePanel.className = "";
    //Get the users list
    Codeproject.Chat.CheckUsers();
    //Get the messages list
    Codeproject.Chat.CheckMessages();
}
//Updates the users list
Codeproject.Chat.CheckUsers = function ()
{
    //Check and validate users in the webservice
    SampleChat.Chat.Services.ChatService.CheckUsers(Codeproject.Chat.CheckUsersCallback);
    //Timer to check users
    setTimeout(Codeproject.Chat.CheckUsers, Codeproject.Chat.CheckUsersRefresh);
}
Codeproject.Chat.CheckUsersCallback = function(response)
{
    if (response.Users.length > 0)
    {
        Codeproject.Chat.ArrangeUsers(response.Users);
    }
}
Codeproject.Chat.CheckMessages = function ()
{
    //Calls the web service to check for new messages
    SampleChat.Chat.Services.ChatService.CheckMessages(Codeproject.Chat.LastMessageId,
        Codeproject.Chat.CheckMessagesCallback);
    //Set the timer to check the messages next time.
    setTimeout(Codeproject.Chat.CheckMessages, Codeproject.Chat.CheckMessagesRefresh);
}
Codeproject.Chat.CheckMessagesCallback = function(response)
{
    if (response.Messages.length > 0)
    {
        //Store the last message id
        Codeproject.Chat.LastMessageId = response.LastMessageId
        //Show the latest message in the message list
        Codeproject.Chat.ArrangeMessages(response.Messages);
    }
    if (response.Users.length > 0)
    {
        //Show the latest message in the message list
        Codeproject.Chat.ArrangeUsers(response.Users);
    }
}
Codeproject.Chat.SendMessage = function ()
{
	var message = Codeproject.Chat.MessageTextbox.value;
	if (message.trim() != "")
	{
		SampleChat.Chat.Services.ChatService.SendMessage(message,
			Codeproject.Chat.LastMessageId,
			Codeproject.Chat.CheckMessagesCallback);
		Codeproject.Chat.MessageTextbox.focus();
		Codeproject.Chat.MessageTextbox.value = "";
	}
}

All the client script needed to run the chat is provided in the source under the namespace: Codeproject.Chat.

Database

Here is the design of the database table used by the chat.

As the amount of records may grow a lot in a few hours/days, it's very important to query this table through its clustered index, getting only the new messages since the previous message you retrieved (storing in the user state the Id of the last message retrieved).

SQL
CREATE TABLE [dbo].[ChatMessages](
    [MessageId] [int] IDENTITY(1,1) NOT NULL,
    [RoomId] [int] NOT NULL,
    [MessageBody] [varchar](250) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [MessageDate] [datetime] NOT NULL,
    [UserId] [int] NOT NULL,
    [IsSystem] [bit] NOT NULL,
 CONSTRAINT [PK_ChatMessages] PRIMARY KEY CLUSTERED
(
    [MessageId] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

Hope you enjoy it!

History

  • March 2nd, 2009 - Article submitted
  • March 9th, 2009 - Article body extended
  • February 24th, 2010 - JS improved

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Spain Spain
Jorge has been working in Software development for more than 10 years. Born in Argentina, he lives in Spain since 2004.

He worked as a consultant for mayor companies including Log, HP and Avanade and holds some technical certifications including MCSD and MCAD.

He is the founder of the asp.net mvc forum open source project Nearforums, the Node.js Cassandra driver and the owner of the news release site prsync.com.

Follow him on Twitter: twitter.com/jorgebg

Contact: jorgebaygondra at gmail

Comments and Discussions

 
GeneralContacto Pin
peterlp20-Jan-10 9:17
peterlp20-Jan-10 9:17 
GeneralRe: Contacto Pin
Jorge Bay Gondra10-Feb-10 5:12
Jorge Bay Gondra10-Feb-10 5:12 
Generaladd css style to the code Pin
Arny114-Dec-09 19:23
Arny114-Dec-09 19:23 
GeneralRe: add css style to the code Pin
Jorge Bay Gondra21-Jan-10 5:48
Jorge Bay Gondra21-Jan-10 5:48 
Generaljavascript error in windows server 2003 R2 Machine Pin
Arny110-Dec-09 23:04
Arny110-Dec-09 23:04 
GeneralRe: javascript error in windows server 2003 R2 Machine Pin
Arny110-Dec-09 23:12
Arny110-Dec-09 23:12 
GeneralRe: Implement into master pages Pin
Member 359855110-Dec-09 22:56
Member 359855110-Dec-09 22:56 
GeneralRe: Implement into master pages Pin
Arny110-Dec-09 23:06
Arny110-Dec-09 23:06 
Generalsorry it is not working Pin
gulam husain ansari12-Aug-09 21:34
gulam husain ansari12-Aug-09 21:34 
Generalsorry can you give me the project database Pin
yongmingxia23-Jul-09 23:06
yongmingxia23-Jul-09 23:06 
Generalerror? [modified] Pin
Ptitnorm22-Jul-09 15:44
Ptitnorm22-Jul-09 15:44 
GeneralRe: error? Pin
Arny110-Dec-09 23:11
Arny110-Dec-09 23:11 
Generalgreat article Pin
Donsw9-Apr-09 7:16
Donsw9-Apr-09 7:16 
GeneralNot Good [modified] Pin
vmguneri10-Mar-09 12:24
vmguneri10-Mar-09 12:24 
GeneralRe: Not Good Pin
I AM LORD VOLDEMORT25-Nov-09 21:31
I AM LORD VOLDEMORT25-Nov-09 21:31 
GeneralThanks Pin
Common-dotnetdeveloper10-Mar-09 8:56
Common-dotnetdeveloper10-Mar-09 8:56 
Generalunable to publish Pin
Chetan.visodiya9-Mar-09 23:58
Chetan.visodiya9-Mar-09 23:58 
GeneralRe: unable to publish Pin
Jorge Bay Gondra10-Mar-09 3:44
Jorge Bay Gondra10-Mar-09 3:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.