Click here to Skip to main content
15,881,381 members
Please Sign up or sign in to vote.
1.33/5 (3 votes)
See more:
i want to make a chat room by socket programming.i want to know how can i connect two clients to az server in a graphical way!
Posted
Updated 12-Jul-13 1:54am
v2
Comments
Shubhashish_Mandal 12-Jul-13 3:04am    
"in a graphical way" means?
Richard MacCutchan 12-Jul-13 3:44am    
There are hundreds of samples of socket programs and chat rooms to be found by using Google. Take a look at some of them and create your own from the ideas you find.
TorstenH. 12-Jul-13 7:55am    
classic homework task - please ask specific.
Added tag.

1 solution

Let me start you off:

Java
package com.camelya.chat;

public class ChatClientApp {

    /**
     * Starting point for the client
     */
    public static void main (String[] args) {
        // start your code here!
    }
}
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900