Click here to Skip to main content
15,867,594 members
Articles / Web Development / ASP.NET
Article

Chat Application using Web services in C#

Rate me:
Please Sign up or sign in to vote.
4.85/5 (38 votes)
15 May 2008CPOL5 min read 382.2K   41.8K   139   91
This is a cool chat application created in DotNet using web services having all the functionalities.

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 = "<a href="%22%22http://tempuri.org/%22%22">http://tempuri.org/</a>")]
[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)


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

Comments and Discussions

 
Questionerror in chat application Pin
gaurav shukla8-Jan-18 19:36
gaurav shukla8-Jan-18 19:36 
Questionhow connect web services with android Pin
moro50001-Jan-17 19:39
moro50001-Jan-17 19:39 
Questionasmx file with scope set to local in settings Pin
Member 109638497-Apr-16 23:20
Member 109638497-Apr-16 23:20 
QuestionWhich file is to be run Pin
Member 119596653-Nov-15 4:42
Member 119596653-Nov-15 4:42 
Questionerror found plz resolve Pin
heresanjay0120-Nov-14 19:25
heresanjay0120-Nov-14 19:25 
AnswerRe: error found plz resolve Pin
Member 1126680213-Oct-15 5:20
Member 1126680213-Oct-15 5:20 
QuestionCouldn't get it to work with service at first Pin
John M Kelly Jr29-Sep-14 2:29
John M Kelly Jr29-Sep-14 2:29 
Questioncant download... Pin
Member 103012517-May-14 21:11
Member 103012517-May-14 21:11 
QuestionNo Puedo Ejecutar la Aplicación HELP Pin
juan_2001-Apr-14 18:47
juan_2001-Apr-14 18:47 
GeneralMy vote of 5 Pin
thedinesh0125-Mar-14 0:03
thedinesh0125-Mar-14 0:03 
QuestionGood work Pin
Raghbinho19-Mar-14 4:17
Raghbinho19-Mar-14 4:17 
QuestionImplement Group Pin
sachin.vishwa9023-Jan-14 19:00
professionalsachin.vishwa9023-Jan-14 19:00 
Questionunable to run Pin
atul singh rautela20-Nov-13 19:12
atul singh rautela20-Nov-13 19:12 
GeneralMy vote of 5 Pin
terdia27-Aug-13 6:32
terdia27-Aug-13 6:32 
QuestionError in connecting to the chat server Pin
terdia27-Aug-13 6:25
terdia27-Aug-13 6:25 
AnswerRe: Error in connecting to the chat server Pin
palespyder20-Sep-13 8:37
palespyder20-Sep-13 8:37 
BugWhile Building the Project gets error! Pin
riodejenris1429-Apr-13 18:45
riodejenris1429-Apr-13 18:45 
Questionhow to run all these four application Pin
baskaran chellasamy28-Apr-13 22:01
baskaran chellasamy28-Apr-13 22:01 
Questionadding voice chat to easy talk chat application Pin
vj2714-Apr-13 20:17
vj2714-Apr-13 20:17 
AnswerRe: adding voice chat to easy talk chat application Pin
baskaran chellasamy28-Apr-13 22:04
baskaran chellasamy28-Apr-13 22:04 
QuestionRe: adding voice chat to easy talk chat application Pin
jain_ravi9-May-13 0:23
jain_ravi9-May-13 0:23 
Questionvoice chat in with easy talk chat application Pin
vj279-Apr-13 20:21
vj279-Apr-13 20:21 
QuestionRe: voice chat in with easy talk chat application Pin
riodejenris143-Jun-13 21:48
riodejenris143-Jun-13 21:48 
SuggestionVisual Studio 2010 compatibility Pin
FourCrate11-Oct-12 11:45
FourCrate11-Oct-12 11:45 
GeneralMy vote of 5 Pin
Iad906-Feb-12 23:41
Iad906-Feb-12 23:41 

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.