hi All,
I'm a spring newbie and investigating some of the Spring remoting interfaces.. which remoting protocol would you recommend when going from presentation to data tier. The architecture is simply:
Presentation <- [which protocol]-> Business <- jdbc -> Data
My JSF pages need to retrieve data to display to the user. In order to retrieve that data it has to go through the Business tier which in turn makes calls to the Data tier via JDBC. What protocol goes inbetween Presentation and Business: hessian, burlap, httpInvoker, jax-rpc?
All components in each tier are java systems.
For example in doing pagination in the presentation tier, the data sets are very tall skinny tables (4 columns, with 100 rows). The target base for the first release is a worst-case 20 concurrent users making these data retrievals.
Thanks.
SM


Reply With Quote