Reputation: 25
I have a question about my system's design. I searched the questions but couldn't find the same situation. So currently I have system that has 1 server and multiple(300+ for now) clients that connects with RMI. Since integrity issues I need to make this system fail safe so I need another server. I don't know how to configure my application for that for now but while doing so I'm wondering that if I could the server side clustered even with load balancing? These two servers are going to be different places with different ip addresses of course and they are comprehensive machines as well.
For example for when a client makes a request it makes the request to more available one.
I searched for external solutions but I'm very new to this stuff. Can you make a suggestion about them as well.
I appriciate the responses. If anything is not clear ask and I will clear it as much as I can.
Upvotes: 1
Views: 1507
Reputation: 310885
RMI/JRMP doesn't support that in any way shape or form, but RMI/IIOP with a suitable failover ORB might.
Upvotes: 1