RMI and concurency
Hi!
I am developing a client/server project in Java (client/server - THE tundra for Java) and I (of course) use RMI. My quesion is: is RMI inherantjy multi-user or do I need to go the extra mile to allow multi use.
The set-up is as follows: ther is one server with a database. Clinets can access the database invocint methods on the Interface. Everything works fine (well, not everything yet - it IS still a work in progress) ... for one user: me: the developer. The main (one of) concern is: what is I let this thing "loose in the wild"? Will it be able to handle multiple connects? And what about connection pooling? I have a Connection Class set up on the server, and it gets passed around nicely, ib the instance of the server ... for me.
Thanks for your reply!
T01dev

