error with JRMP connection establishment

后端 未结 3 1579
情歌与酒
情歌与酒 2021-02-19 15:57

I am getting following exception trace :

java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is: 
    java.net.SocketTimeou         


        
3条回答
  •  春和景丽
    2021-02-19 16:04

    1. Insufficient memory.

    Not at the client. Possibly at the server, if it causes a failure to allocate a thread for example.

    1. RMI calls getting failed due to increased number of requests to the server causing one of them to wait and causing time outs for this request to process.

    No. The error occurs during the connection establishment phase, long before the server-side method implementation gets invoked.

    1. incompatible jre version or anything related to JRE version.

    No.

    1. Any networking related issue.

    Yes.

    1. Firewall related.

    No. That would cause a connect timeout, or in certain obsolete cases a connection refusal, not a read timeout.

提交回复
热议问题