Pages

Wednesday 18 December 2013

How to design a simple AJAX web chat (CSASPNETAJAXWebChat)


Download the sample project

Introduction

The project illustrates how to design a simple AJAX web chat application. We use jQuery, SP.NET AJAX at client side and LINQ to SQL at server side. In this sample, we could create a chat room and invite someone else to join in the room and start to chat.

Running the Sample

Step 1:               Open the CSASPNETAJAXWebChat.sln. Press F5 to open the default.aspx.
Step 2:               By default, we could see two chat rooms in the list, you can click the button, "Create chat room", to create your own chat room. Before that button, we could see a textbox, we can input our chatting alias before joining into the room.
Step 3:               Click any "Join" button at the end of each row. You will see a popup chat room window.
Step 4:               Open a new browser and make the same steps to impersonate another user to join in the same chat room.
Step 5:               When we input one message, we will see both of the chat room windows will show the messages.
Step 6:               Validation is finished.

Using the Code

Step 1:               Create an "ASP.NET Empty Web Application" in Visual Studio 2010/Visual Web Developer 2010. In this sample it is "WebChat".
Step 2:               Right-click the App_Data directory, and click Add -> New Item -> SQL Server DataBase. In this sample it is "SessionDB.mdf".
Step 3:               Open the database file and create four tables.
         * tblChatRoom: store chat room data.
         * tblMessagePool: store the chat message data temporarily.
         * tblSession: store the user session data.
         * tblTalker: store the user data who in the chat rooms.
         The details columns for these tables, please refer to the SessionDB.mdf in this sample.
Step 4:               Create a new directory, "Data". Right-click the directory and click Add -> New Item -> Linq to SQL classes.(If you could not find that template, please click the Data node of the tree view at the left hand.) In this sample, it is SessionDB.dbml.
Step 5:               Open the SessionDB.dbml and double-click the SessionDB.mdf, you will see the database in the Server Explorer. Expand the SessionDB.mdf, expand the Tables folder, and select the four tables, and drag them all to the stage of the SessionDB.dbml.
Step 6:               Create a new directory, "Logic". We need to create some class files.
         * ChatManager.cs: we have some static methods to control the data in the database by using Linq.
   * ChatRoom.cs: it is a DataContract used to send the chat room data                                   to the client side by WCF service.
     * Message.cs: it is a DataContract used to send the message data  to the client side by WCF service.
 * RoomTalker.cs: it is a DataContract used to send the talker data in one chat room to the client side by WCF service.
For the details of these classes, please refer to these four files in this sample.
Step 7:               Create a new directory, "Services". Right-click the directory and click
         Add -> New Item -> AJAX-enabled WCF service. In this sample, it is Transition.svc.
Add these two attributes for that class to make sure that the session is allowed.
C#
[ServiceContract(Namespace = "http://CSASPNETAJAXWebChat", SessionMode = SessionMode.Allowed)] 
        [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] 
 
In this file, we create some WCF service method which could be used by the client side to execute.
 For the details of these classes, please refer to the Transition.svc in this sample.                          
Step 8:               Create a new directory, "Scripts". Right-click the directory and click
  Add -> New Item -> Jscript File. We need to create some js files to call the WCF service from client side. And there are some page logic codes for this sample; they could be defined by user requirement.
 ASP.NET AJAX allows us to add some service references. So the ScriptManager will generate the client service contract scripts automatically. And what we need to do is just call the service method like we use them at server side. For example, we call the LeaveChatRoom method in the Transition.svc, we could write the JavaScript function like this:
C#
csaspnetajaxwebchat.transition.LeaveChatRoom(RoomID,SuccessCallBack,FailCallBack); 
 
 * csaspnetajaxwebchat is the namespace for this application.
* transition is the service name.
 * LeaveChatRoom is the method name.
 Because of this method has one parameter, the RoomID stands for that parameter, if we have two or more parameters for one methed, just write them before SuccessCallBack.
 * SuccessCallBack is a function used to be fired when the service called successfully.
* FailCallBack is a function used to be fired when the service called unsuccessfully.
For more details about these script functions, please refer to the files in this sample.(chatbox.js, chatMessage.js, chatRoom.js).
Step 9:               Open the Default.aspx,(If there is no Default.aspx, create one.) Create a ScriptManager control and add a service reference and a script reference like below.
HTML
<asp:ScriptManager ID="ScriptManager1" runat="server"           <Services               <asp:ServiceReference Path="~/Services/Transition.svc" /> 
           </Services> 
           <Scripts               <asp:ScriptReference Path="~/Scripts/chatbox.js" /> 
           </Scripts> 
        </asp:ScriptManager> 
 
Step 10:            In the Head block, add some js and css references from the CDN.
HTML
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"></script><script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.ui/1.8.5/jquery-ui.min.js"></script> 
        <script type="text/javascript" src="scripts/chatRoom.js"></script> 
        <link rel="Stylesheet" type="text/css" href="http://ajax.microsoft.com/ajax/jquery.ui/1.8.5/themes/dark-hive/jquery-ui.css" /> 
 
We use these references to make this sample to write code easier and looks better.
There are some other UI markups, please refer to the Default.aspx in this sample.
 For more details about CDN, please view the links listed in the References part at the end of this ReadMe file.
Step 11:            Create a new web page. In this sample, it is "ChatBox.aspx".  In that page, we create some UI controls to send and receive messages. For more details, please refer to the ChatBox.aspx in this sample.
Step 12:            Build the application and you can debug it.

you can check the original artice from here

By,
Akash Roy,
CEO, JPR Infoserve,
http://jprinfoserve.com

No comments:

Post a Comment