| Author |
RMI inside socket
|
rosy Jovita
Ranch Hand
Joined: Jan 05, 2010
Posts: 45
|
|
Hi all,
i was about to create a client server Automated teller machine (ATM) implemented both
using socket and rmi. Socket is use to connect the client and server, while RMI is use to implement the method such
as withdrawal, check balance and so on.
server must be able to serve multiple client at one time (multithreading).
Anyone know how to implement RMi in socket? Please help me, i have crack my head for this but found no solution.
thanks
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Why use both? RMI is built on top of sockets so you can skip the entire manual socket part. RMI will be all you need, and it will be multi-threaded automatically (which requires you to make sure the server is thread safe).
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: RMI inside socket
|
|
|