Click here to Skip to main content
Licence 
First Posted 21 Jan 2004
Views 49,646
Bookmarked 20 times

Writing ASP Chat using JavaScript and XML (Part 3)

By | 21 Jan 2004 | Article
Step-by-step article about writing web-based chat. This article explains the chat with users list and registration.

Sample Image - RegistrableChat.gif

Introduction

Here, I added persistence of user information and registration. Upgrading User-friendly chat to Registrable chat requires adding persistent user information. New users must be able to register. Existing users can login using a username and password.

Registrable chat

On the start page, we need to add a password field and link to a registration page. The loginUser function is appended with a password argument. In this function, we replaced repeat authorization checking with user authentication by name and password. If the name and password are correct, a new session is created. Another important function is registerUser(nick, password, firstName, lastName, email). Both functions use a single store, which can be an XML file or a relational database. In this article, we use XML.

For performance reasons, XML data must always be in memory, and disk I/O operations should be infrequent. The previously written SharedXML class, with few improvements, will fit these requirements. The only improvements required are two functions: save(fileName) and load(fileName), to write and read the whole XML on disk appropriately. For accessing single node attributes, use UserInfo class. To maintain good architecture design, we use the UserDataXML class, which encapsulates logic for working with SharedXML and UserInfo classes.

The data persistence algorithm is as follows.

Data loading

Initial data load must be on application startup or on first data access. For simplicity, we use the Application_OnStart event.

function Application_OnStart() {
    // Initial data load.
    var usersData = new UsersDataXML;
    usersData.initialize();
}

Data saving

Saving of data should be performed each time a change occurs; in our case this is only registerUser call. If data changes occur frequently, then we should use an auto-saving mechanism. Here, the save operation is invoked by the same functions, but with refractory period. This means time, while the saving operation does not lead to real data writing. To implement this possibility, we should use the UserData_autoSave() method. Also, in this scenario, we require a final call to save data before the application is terminated. In ASP, this is the Application_OnEnd() routine.

Note, XML DOM requires physical memory that is ten times larger than the file size itself.

Another important activity is providing valid file path and read-write access permissions. If a file does not exist, it will be created after the first user registers, by registerUser() method.

Registrable Chat requires folder with read-write permissions. It can be a DB folder, which is not a subfolder of the web application. For example: <Your local path>\Samples\RegistrableChat\DB\.

Conclusion

Are You still looking for something more? In the next part, you will see how to create a chat with multiple rooms.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alexander Fedorenko

Web Developer

Ukraine Ukraine

Member

Alexander Fedorenko is a professional C++ developer since 1996. He completed many custom and shareware projects. One of the successful projects is DevPlanner - tool for personal planning and time management. Right now he is sharing ideas and experience on Lotus Notes integration in his blog.

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
GeneralDelete users Pinmemberkinghenry231:47 15 Mar '11  
Questioncustomer support PinmemberMoukala23:29 29 Oct '06  
QuestionProblem with Registering Pinmemberkango3:31 28 Oct '05  
AnswerRe: Problem with Registering PinmemberAlexander Fedorenko8:10 28 Oct '05  
QuestionWhere is the article? PinmembertheJazzyBrain7:02 26 Jan '04  
AnswerRe: Where is the article? PinmemberAlexander Fedorenko0:26 27 Jan '04  
GeneralRe: Where is the article? PinmembertheJazzyBrain0:22 28 Jan '04  
GeneralRe: Where is the article? PinmemberAlexander Fedorenko0:44 28 Jan '04  
GeneralRe: Where is the article? PinmembertheJazzyBrain23:29 28 Jan '04  

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
Web04 | 2.5.120517.1 | Last Updated 22 Jan 2004
Article Copyright 2004 by Alexander Fedorenko
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid