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

A. R. Live Support: XML Based Customer Support Chat Solution

Rate me:
Please Sign up or sign in to vote.
4.58/5 (22 votes)
16 Dec 2008CPOL2 min read 142.3K   5.4K   81   84
Customer Support chat solution build using ASP.NET(2.0) with C# and XML as a database.
ChooseChannel.jpg

UserWindow.jpg

AgentResponse.jpg

Introduction

I have checked out a lot of chat solutions and all of then were database driven. These applications fail as soon as the database is down and in live systems, this scenario is not unknown. So, I decided to build a Chat Solution that should be database independent. So, XML is the best replacement.

This is my first article and A. R. Live Support is the first solution I have developed using XML.

Background

A. R. Live Support is an online chat software, developed in ASP.NET(2.0) and XML. It is easy to use and facilitates 1-o-1 live communication between customers and executives. It is a flexible live chat software that provides the customer support with a click.

The main features are:

  1. Built with HTML, JavaScript, XML, C#, using Ajax techniques
  2. NO DATABASE: No need for a database (since it is XML based)
  3. No Flashing: Based on advanced Ajax techniques, the chat screen refreshes every second(this can be customized), and changes on the screen do not require a screen refresh
  4. NO ACTIVEX or PLUGINS, etc. - because it is not Java based, the user does not need to install plugins, or have Java components on the machine. A combination of JavaScript, XML and C# ASP.NET makes this possible.
  5. NO MEMORY STORAGE for messages, users; everything gets stored in XML files. This feature allows several chat rooms and even chat applications to run on the same server.
  6. EASY TO INSTALL - Just unzip a *.zip file on the server, create a virtual directory, and the chat is ready.
  7. ANY MAJOR BROWSER OK - Internet Explorer, Netscape, Mozilla Firefox, Opera

Code Walkthrough

  1. I will start from a code that will be used to call the Server repeatedly for fetching the most recent information:

    C#
    function InitializeTimer()
    {
        // Set the length of the timer,
        // in seconds. Your choice
        secs = 2;
        StopTheClock();
        StartTheTimer();
    }
    function StopTheClock()
    {
        if(timerRunning)
            clearTimeout(timerID);
        timerRunning = false
    }
    function StartTheTimer()
    {
        if (secs==0)
        {
            StopTheClock();
    	ajax_MakeAnAJAXGetCall();
            //Generate a Postback to the server
            InitializeTimer();
            // Start the timer again
        }
        else
        {
            secs = secs - 1;
            timerRunning = true;
            timerID = self.setTimeout("StartTheTimer()", delay);
        }
    }
    
    //AJAX Function
    function makeRequest()
    {
    	var xmlHttpRequest = null;
    	/*
    	* For Firefox, Mozilla, Safari
    	*/	
    	if (window.XMLHttpRequest)
    	{
    		xmlHttpRequest = new XMLHttpRequest();
    	}
    	/*
    	* For Microsoft Internet Explorer
    	*/
    	else if (typeof ActiveXObject != "undefined")
    	{
    		xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
    	}
    	return xmlHttpRequest;
    }//END of Function makeRequest
    
    function ajax_MakeAnAJAXGetCall()
    {
    	ajaxObj = makeRequest();
    	//alert('HELLO');
    	if (ajaxObj != null)
    	{
    		var dt = new Date();		
    		var URL = serverURL;
    		URL += '?id=' + document.getElementById('lblID').innerHTML + 
    			'&dt1=' + dt.getHours()+ '&dt2=' + dt.getMinutes();
    		//alert(URL);
    		StopTheClock();
    		ajaxObj.open("GET", URL, true);
    		ajaxObj.onreadystatechange = ajax_CallBack;
    		ajaxObj.send(null);
    	}
    	else
    	{
    		
    	}	
    	return false;
    }
    
    function OpenPop(strId)
    {
        window.open('execChatWindow.aspx?id=' + strId,'','width=520,height=490');
    }
    
    function ContactServer()
    {
    	ajax_MakeAnAJAXGetCall(); //THis makes Ajax call to run 
    }
  2. Server side code to fetch the messages for User/Executive:

    C#
    string strResult = string.Empty;
    try
    {
      string chatId = Request.QueryString["cid"].ToString();
      string strXML = chatId + ".XML";  
      strResult = clsChatMessages.getUnReadMessages(Request.PhysicalApplicationPath, 
    		strXML,Request.QueryString["id"].ToString(), true);
    }
    finally
    {
    
    }

Points of Interest

  1. Chat is fully customizable, i.e. there are a lot of interesting settings in web.config.
  2. Initially it does not provide any reporting, but that can be generated using XML files.

History

  • 09-Nov-2008
    • Initial post of article
  • 18-Nov-2008
    • Selection of Departments for the Chat
    • [Bug Fix] in chat allocation
  • 16-Dec-2008
    • Chat Transfer between Executives
    • Password Encryption [RSA]

License

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


Written By
Team Leader
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalerror when user want to chat with excutive Pin
amirsamanipoor28-Apr-15 3:22
amirsamanipoor28-Apr-15 3:22 
QuestionHi.. Having chat.dll issue Pin
Member 1126227325-Nov-14 2:15
Member 1126227325-Nov-14 2:15 
Questionsharing files or images in chat Pin
imran RP28-Sep-14 1:09
imran RP28-Sep-14 1:09 
AnswerRe: sharing files or images in chat Pin
Aman Bhullar13-Oct-14 3:27
Aman Bhullar13-Oct-14 3:27 
QuestionChat.dll Pin
Nico_Travassos26-Jun-14 4:01
Nico_Travassos26-Jun-14 4:01 
Good day sir can you maybe give me the source to chat.dll so i can update it up to date?

Regards
Nico
AnswerRe: Chat.dll Pin
Aman Bhullar8-Jul-14 5:33
Aman Bhullar8-Jul-14 5:33 
QuestionI Cant Use this :( Pin
sara-98418-May-14 20:46
sara-98418-May-14 20:46 
AnswerRe: I Cant Use this :( Pin
Aman Bhullar19-May-14 23:55
Aman Bhullar19-May-14 23:55 
Questionclose the client windows Pin
Member 105260156-Feb-14 7:40
professionalMember 105260156-Feb-14 7:40 
Questionchat notification Pin
Member 896470922-Jun-13 2:41
Member 896470922-Jun-13 2:41 
AnswerRe: chat notification Pin
Aman Bhullar26-Jun-13 5:50
Aman Bhullar26-Jun-13 5:50 
GeneralRe: chat notification Pin
Member 896470926-Jun-13 10:31
Member 896470926-Jun-13 10:31 
GeneralRe: chat notification Pin
Aman Bhullar1-Jul-13 4:50
Aman Bhullar1-Jul-13 4:50 
QuestionCan you transfer a chat to another operator Pin
Member 100945125-Jun-13 6:30
Member 100945125-Jun-13 6:30 
Questionproject doesnt have a good document Pin
amirsamani1-Jun-13 0:51
amirsamani1-Jun-13 0:51 
QuestionPost a Java version Pin
52215178218-Dec-12 19:25
52215178218-Dec-12 19:25 
AnswerRe: Post a Java version Pin
Aman Bhullar23-Dec-12 21:52
Aman Bhullar23-Dec-12 21:52 
QuestionCan we change the brand name? Pin
Amit D Rajput4-Nov-12 23:05
Amit D Rajput4-Nov-12 23:05 
AnswerRe: Can we change the brand name? Pin
Aman Bhullar9-Dec-12 23:00
Aman Bhullar9-Dec-12 23:00 
QuestionChat.DLL Pin
solgen31-Jul-12 15:34
solgen31-Jul-12 15:34 
AnswerRe: Chat.DLL Pin
Aman Bhullar23-Aug-12 19:22
Aman Bhullar23-Aug-12 19:22 
AnswerRe: Chat.DLL Pin
amirsamani1-Jun-13 0:47
amirsamani1-Jun-13 0:47 
GeneralRe: Chat.DLL Pin
Aman Bhullar6-Jun-13 1:37
Aman Bhullar6-Jun-13 1:37 
QuestionUsing this in my project Pin
mrkeivan13-Feb-12 19:22
mrkeivan13-Feb-12 19:22 
AnswerRe: Using this in my project Pin
Aman Bhullar6-Jun-13 1:41
Aman Bhullar6-Jun-13 1: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.