Click here to Skip to main content
Licence CPOL
First Posted 9 Mar 2009
Views 80,437
Downloads 4,872
Bookmarked 133 times

Build a Web based Chat using ASP.NET Ajax

By | 24 Feb 2010 | Article
Build a GMail like web based chat using ASP.NET Ajax that can handle several requests and simultaneous users
 
Part of The SQL Zone sponsored by
See Also
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.

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.

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).

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)

About the Author

Jorge Bay Gondra

Software Developer

Spain Spain

Member

Jorge has been working with Microsoft technologies 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.
 
Currently, he is developing the open source asp.net mvc forum software nearforums and the open source press release site prsync.com.
 
Follow him on Twitter: twitter.com/jorgebg
 
Contact: jorgebaygondra at gmail


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questioncall masterpage at runtime Pinmemberuuttam-kumar20:52 28 Mar '12  
QuestionMicrosoft JScript runtime error: 'Codeproject' is undefined Pinmembermmckaarshe6:47 31 Jan '12  
AnswerRe: Microsoft JScript runtime error: 'Codeproject' is undefined PinmemberJorge Bay Gondra21:43 1 Feb '12  
QuestionCould not load type 'SampleChat.Chat.Controls.Chat Pinmembersolutioner9922:24 11 Dec '11  
AnswerRe: Could not load type 'SampleChat.Chat.Controls.Chat PinmemberJorge Bay Gondra22:41 11 Dec '11  
GeneralRe: Could not load type 'SampleChat.Chat.Controls.Chat Pinmembersolutioner990:03 12 Dec '11  
GeneralRe: Could not load type 'SampleChat.Chat.Controls.Chat PinmemberJorge Bay Gondra0:45 12 Dec '11  
GeneralRe: Could not load type 'SampleChat.Chat.Controls.Chat Pinmembersolutioner990:53 12 Dec '11  
Question2chat room Pinmembervidyasagarreddy14320:38 5 Dec '11  
QuestionMejora PinmemberRichardEm9:09 14 Oct '11  
Questionhow to add room id dynamically Pinmembermahabubur rahman23:42 2 Oct '11  
AnswerRe: how to add room id dynamically Pinmembertamannashah199322:51 15 Nov '11  
GeneralRe: how to add room id dynamically Pinmembermahabubur rahman0:42 16 Nov '11  
QuestionDatabase Problem PinmemberRichardEm12:00 27 Sep '11  
AnswerRe: Database Problem PinmemberJorge Bay Gondra21:49 27 Sep '11  
QuestionMy vote of 5 PinmemberFilip D'haene6:23 8 Sep '11  
AnswerRe: My vote of 5 PinmemberJorge Bay Gondra21:49 27 Sep '11  
QuestionCan Anybody pls code this project in simple way Pinmemberhijagdeep8:20 1 Sep '11  
AnswerRe: Can Anybody pls code this project in simple way PinmemberJorge Bay Gondra22:24 1 Sep '11  
QuestionCannot run this. PinmemberMember 182069323:51 23 Aug '11  
GeneralMy vote of 5 Pinmemberaloknetuser3:07 5 Aug '11  
GeneralMultiusuarios Pinmemberjesuskaoz9:03 15 Jun '11  
Generalfacing problem in managing users. Pinmembernaseer baloch1:53 26 May '11  
GeneralRe: facing problem in managing users. PinmemberJorge Bay Gondra2:34 26 May '11  
GeneralThis Articles Grate Pinmembernagarajapdotnet4:32 23 Dec '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 Feb 2010
Article Copyright 2009 by Jorge Bay Gondra
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid