You are on page 1of 1

Abstract (Chat server)

What is Chat Server?


Chat server is a stand alone application that is made up the combination of two-application,
server application (which runs on server side) and client application (which runs on client side).
This application is using for chatting in LAN. To start chatting you must be connected with the
server after that your message can broadcast to each and every client.

How we design it
For making this application we are using some core java features like swing, collection,
networking, I/O Streams and threading also. In this application we have one server and any
number of clients (which are to be communicated with each other). For making a server we have
to run the MyServer.java file at any system on the network that we want to make server and for
client we have to run MyClient.java file on the system that we want to make client. For running
whole client operation we can run the Login.java.

Understand and get the chat server application by following steps:


 Client Side Application: - For creating the Client side application firstly creates the login
frame it consist one textfield and the login button. After hitting the login button it shows
the next frame that Client Frame and it consist one textfield for writing the message and
one send button for sending it. And two list boxes, one is for showing the all messages
and another list box is use to show the all user names. This frame has one more button
that is Logout button.

 Server Side Application: - Server side application is used to get the message from any
client and broadcast to each and every client. And this application is also used to maintain
the list of users and broadcast this list to everyone.

Vivek Gupta (0905cs071087)

Ritu Verma (0905cs083d06)

Praveen Dubey (0905cs071050)

You might also like