Our TCP echo back server will be a separate thread.
It's simple as its a start. It will just echo back whatever you send it but in capitalised form.
public class CAPECHOServer extends Thread{
// This class implements server sockets. A server socket waits for requests to come
// in ove...