I have to plan this big client-server app, communicating through EJB(2.1).
-The server serving these thousands (potentially tens of thousands) of clients is in one central place, and has 2 working threads.
-The EJB would basically serve back lists of tens-hundreds of not that huge DTO's (up to 10 primitive data / String fields ).
-The users's ID matters (the database queries do take into account the ID of the user)
I want to know what would be the best type of bean to use (even at first sight) in such an environment, meaning Stateless-Session, Stateful-Session, Entity or Message-Driven.
I'm thinking about possibly using a cache of Stateless-Session beans, seems less object creation-destruction and server resources, but i'm no expert.
If anyone has any expertise on this, i'd be really grateful.
Thx, you guys rule