posted 23 years ago
Hi Murphy Patrick or is it Patrick Murphy??
Do yourself a giant favor and use RMI. RMI will save you the overhead of having to establish an object protocol as well as adding server logic that keeps track of connected clients. Sockets communicates to remote machines by passing objects back and forth whereas RMI does not. RMI is also the basis or EJBs, so if you plan on continuing with architecture stuff, RMI will probably provide a better foundation. Sockets would be cool to implement, but the associated overhead sure adds to the already large task of the FBN application. Good luck