'Connection between Nodejs and Java. When client of java connect to nodejs server then it shows me error,

I have a server on node.js and client on Java. When client of Java connects to Nodejs server then it shows me error which is given below.

I have a Server on node.js

const net = require('net');
const server = net.createServer((c) => {
// 'connection' listener
console.log('client connected');
c.on('end', () => {
console.log('client disconnected');
});
c.write('hello from server\r\n');
c.pipe(c);
});

server.on('data', ()=>{
Console.log(data); 
});
server.on('error', (err) => {
throw err;
});
server.listen(6969, () => {
console.log('server bound');
});

I hava a java code.

public class NodeJsEcho { 
// socket object
private Socket socket = null; 
public static void main(String[] args) throws UnknownHostException,    
IOException, ClassNotFoundException { 
    // class instance 
    NodeJsEcho client = new NodeJsEcho(); 
    // socket tcp connection 
    String ip = "127.0.0.1"; 
    int port = 6969; 
    client.socketConnect(ip, port); 
    // writes and receives the message

    String message = "message123"; 
    System.out.println("Sending: " + message); 
    String returnStr = client.echo(message); 
    System.out.println("Receiving: " + returnStr); 
    } 
// make the connection with the socket 
private void socketConnect(String ip, int port) throws UnknownHostException,    
 IOException{
    System.out.println("[Connecting to socket...]"); 
    this.socket = new Socket(ip, port); 
    }
// writes and receives the full message int the socket (String) 
public String echo(String message) 
{
    try {
        // out & in 
        PrintWriter out = new PrintWriter(getSocket().getOutputStream(),    
        true); 
        BufferedReader in = new BufferedReader(new   
        InputStreamReader(getSocket().getInputStream()));
        // writes str in the socket and read 
        out.println(message); 
        String returnStr = in .readLine();
        return returnStr; 
        } catch (IOException e) 
    {
            e.printStackTrace();
            }
    return null; 
    } // get the socket instance 
private Socket getSocket() 
{
    return socket; 
    }

}

Its shows me the error on server side of:

 client connected
  events.js:141
  throw er; // Unhandled 'error' event
  ^

Error: read ECONNRESET
at exports._errnoException (util.js:870:11)
at TCP.onread (net.js:550:26)
Done.


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source