Select RMI or other libraries

I am writing an application that has a server and a lot of clients. Clients and the server send messages to each other. I am going to use RMI, but:

1. I will have 1000 requests from clients to the server per second. Is it normal for RMI? How about performance?

2. I know there are many different libraries (JIRO and other). Myabe some of them can solve this task better. For example, in RMI I should use synchronized, maybe some of them can synchronize access to objects automatically.

[504 byte] By [ViktorSa] at [2007-11-27 8:50:51]
# 1
1000/second should be fine for RMI, depending mostly on your hardware.The better the library the more it will leave synchronizaton up to you, IMO.
ejpa at 2007-7-12 21:02:56 > top of Java-index,Core,Core APIs...
# 2
Thanks.
ViktorSa at 2007-7-12 21:02:56 > top of Java-index,Core,Core APIs...