5,276,156 members and growing! (23,558 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Beginner License: The Code Project Open License (CPOL)

Chat Application using Web services in C#

By Surajit Paul

This is a cool chat application created in DotNet using web services having all the functionalities.
C# (C# 2.0, C#), .NET (.NET, .NET 3.5, .NET 2.0, Mono, DotGNU), ASP.NET, COM+, WinForms, Dev

Posted: 30 Dec 2007
Updated: 15 May 2008
Views: 14,542
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
6 votes for this Article.
Popularity: 2.53 Rating: 3.25 out of 5
1 vote, 16.7%
1
2 votes, 33.3%
2
1 vote, 16.7%
3
1 vote, 16.7%
4
1 vote, 16.7%
5
Note: This is an unedited contribution. If this article is inappropriate, needs attention or copies someone else's work without reference then please Report This Article

Introduction

All of us are more or less using many of the chat applications available in the market everyday but still sometimes wonder of how it has been developed. This is a simple private chat application developed in DotNet using a web service.

The application (EasyTalk, I named it) targets mainly the beginners who still sometimes fear of using the web service. The audience will get a taste of how web servcie can be easily developed and can be used in a chatting application.

Background

The chat client is developed just like any other chat application using Windows form and the chat service is developed using the Dot Net web service residing in the web server.

Zip File Contents

The above attached zip file contains the following projects:

1. Chat Service - This is the web service to be deployed in any web server.

2. Chat Client - The is the chat application through which the user will chat.

3. Chat Setup - The distributable setup package.

4. Chat Testing - To is to test the web service.

Using the code

ChatService.asmx (Web Service)

The ChatService.asmx in the zip file represents the name of the web service in which you will see lot of web methods that will be called by the clients using the application.

[WebService(Namespace = "%22%22http://tempuri.org/%22%22">http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class ChatService : System.Web.Services.WebService
{
    static protected ArrayList arrUsers = new ArrayList();
    static protected ArrayList arrMessage = new ArrayList(); 
  
    public ChatService () { 
    
        //Uncomment the following line if using designed components 
        //InitializeComponent(); 
    }

Remember these methods are always 'public', otherwise they won't be available for the outside world. You can only set a public method as a web method, otherwise they will be treated as private methods to the web service.

Let us walk through some of these methods:

[WebMethod]
public void AddUser(string strUser)
{ 
    arrUsers.Add(strUser); 
} 

The AddUser() method will add the user who has logged in the ArrayList being maintained in the web service. By this way the online user list is always updated and will give you the list of users in the room at any point of time.

[WebMethod]
public string GetUsers() 
{
    string strUser = string.Empty; 
    for (int i = 0; i < arrUsers.Count; i++)
    {
        strUser = strUser + arrUsers[i].ToString() + "|";
    }
    return strUser;
}

The GetUser() method will retrieve the list of users who have logged in the application. This list can be easily available from the Arraylist at any time.

[WebMethod]
public void RemoveUser(string strUser)
{
    for (int i = 0; i < arrUsers.Count; i++)
    {
        if(arrUsers[i].ToString() == strUser)
            arrUsers.RemoveAt(i);
    }
}

The RemoveUser() method will do the opposite. It will take out the required name out of the Arraylist whenever the user logout from the application.

[WebMethod]
public void SendMessage(string strFromUser, string strToUser, string strMess)
{
    arrMessage.Add(strToUser + ":" + strFromUser + ":" + strMess); 
}

The SendMessage() method will concatinate the strings (the username to which the message has been sent, the username who has sent the message and the actual message) coming as parameters and will add the new string to another ArrayList. This ArrayList will simply hold all the messages coming from diferent clients intended for different users.

[WebMethod]
public string ReceiveMessage(string strUser)
{
    string strMess = string.Empty;
    for (int i = 0; i < arrMessage.Count; i++)
    {
        string[] strTo = arrMessage[i].ToString().Split(':');
        if (strTo[0].ToString() == strUser)
        {
            for (int j = 1; j < strTo.Length; j++)
            {
                strMess = strMess + strTo[j] + ":";
            }
            arrMessage.RemoveAt(i);
            break;
        } 
    }
    return strMess;
}

The ReceiveMessage() method is doing all the tricks. It will filter the messages from the Arraylist and will send each message to its actual recipient.

1. It is taking out the messages one by one from the Arraylist.

2. It is comparing the 'ToUser' name attached with the message with the username from whom the method is requested.

3. If the names are same means the message is intended for that recipient only. It will return the message to that user and remove the message from the arrayList once it is transfered.

ChatClient (Client Application)

Chat User List Window

The Chat Client is developed using the Windows Forms. You will see two forms by the name Form1 for showing the online user list and PrivateMessage for the chat window.

In this solution we have added the web service as a web reference to this project. So whenever you add the web service that has been deployed in any of your server, the client application will register that path to the server.

The Form1 is the interface that is populating the list of online users logged into the EasyTalk aplication. There is no login form in this application as the username is automatically assigned from the windows login name. The same name will get displayed in the list which on click will open a one to one conversation window to chat with that person. There is a timer attached with this form that will call the GetUser() web method in the web service every 2 seconds to update the list of online users.

chatlist.jpg

Extra Functionalities:

1. Whenever any user logs into the application, a notification window will get popup in all the online users machine from the right corner of the screen to show the name of the new online user. [screenshot below]

NotifyUser.JPG

2. Whenever the user minimises the chat window, the new messeges will start coming to that user in a popup window like the one above from the right corner of the screen like that in gtalk.

3. If the user wishes not to get the messeges in apopup window he can select the checkbox at the bottom of the main window named "Stop Messege Alert service".

Chat Window

The other form is the privateMessage that will allow the user to talk to the other person. There is also a timer attached with this form that will call the ReceiveMessage() method to check whether any new message has arrived from the other side. So if there are 3 windows open for an user, the respective window will look for it's own message through the timer.

Private Message

In the application, the notifyIcon control is also used so that the user can keep the application running in the system tray. There is a menu associated with the application through which the

One catchy thing that has been used in this application is to blink the chat window whenever any new message comes. The blinking will go on till the user clicks the window to read the message. This is done using Windows API.

[DllImport("user32.dll")]
static extern Int32 FlashWindowEx(ref FLASHWINFO pwfi);

Configuration Window

There has been a configuration window to change the server name/ip address. If the web service is deployed in a diferent chat server, only the new ip addreess needs to be supplied to the application through the configuration window by the users.

Points of Interest

This is just one way of creating a very simple chat application using a web service. You can create this application using a different approach. You can further procced with this application by creating more functionalities like Public Chatting, Conferences, etc.

Happy Chatting!!!!!!

History

Keep a running update of any changes or improvements you've made here.

License

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

About the Author

Surajit Paul


He has a total experience of more than 6 years in programming on different technologies. Currently working as a Systems Analyst.
Occupation: Team Leader
Location: United States United States

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Search Search Messages 
 Layout  Per page   
 Msgs 1 to 17 of 17 (Total in Forum: 17) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralLogin Form with several User in DB?How to do in asp.net Using C# without using Authenticate function..memberGunaseelan845:08 17 Jun '08  
AnswerRe: Login Form with several User in DB?How to do in asp.net Using C# without using Authenticate function..memberSurajit Paul20:08 17 Jun '08  
GeneralPlz Urgent HelpmemberAdwivedi20:54 1 Jun '08  
GeneralRe: Plz Urgent HelpmemberSurajit Paul0:40 2 Jun '08  
QuestionVoice Chatmemberinformaniac19:58 18 May '08  
GeneralHello . Need help urgent. I have some bugsmemberKh30pS22:38 27 Mar '08  
GeneralRe: Hello . Need help urgent. I have some bugsmemberSurajit Paul0:47 2 Jun '08  
GeneralHow does it recognizes the IP of the communicators??memberDhananjayShenolikar1:16 24 Mar '08  
GeneralRe: How does it recognizes the IP of the communicators??memberSurajit Paul0:54 2 Jun '08  
Generalare there any limits?membermaxrpgg2:31 25 Feb '08  
GeneralRe: are there any limits?memberSurajit Paul0:45 2 Jun '08  
Generalusing this sourcemembermaxrpgg11:10 7 Feb '08  
AnswerRe: using this sourcememberSurajit Paul1:13 13 Feb '08  
GeneralRe: using this sourcemembermaxrpgg7:07 15 Feb '08  
NewsThread safety & type safetymemberAndrei Rinea8:03 8 Jan '08  
GeneralRe: Thread safety & type safetymemberMaverik11:38 3 Jun '08  
RantRe: Thread safety & type safetymemberAndrei Rinea14:18 3 Jun '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 15 May 2008
Editor:
Copyright 2007 by Surajit Paul
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project