The Artima Developer Community
Sponsored Link

Java Answers Forum
architecture design questions

1 reply on 1 page. Most recent reply: Apr 22, 2005 6:49 AM by Thomas Eichberger

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
Petr Juza

Posts: 2
Nickname: jps26401
Registered: Apr, 2005

architecture design questions Posted: Apr 11, 2005 8:30 AM
Reply to this message Reply
Advertisement
Hi,
I would like to ask you about architecture design. I have application (standalone application, now only connected to database) which I want to transfer to client-server architecture. Client will be rich standalone application that will not communicate with db but with server.

For the first time I require that server will simulate db - load data from db and send them (in any serialized form propably) to client and nothing else. In next steps I want to move as much as possible to server (bussiness logic, time consuming operations) and send to client only necessary data. Apart from rich client will be thin clients (propably Applet and normal JSP pages) which must also communicate with server and gain data.

Other important data: our team does not have EJB skills and we do not have enough time now for big changes or time for learning brand new technologies.

I need to help in choosing right technology (framework) for this. Can be RMI good solution?

I would very appreciate you help.
Thanks,
PETER


Thomas Eichberger

Posts: 4
Nickname: xtraclass
Registered: Aug, 2003

Re: architecture design questions Posted: Apr 22, 2005 6:49 AM
Reply to this message Reply
RMI would be good, it's not too difficult.

EJB is more difficult, but does the same (it uses RMI/IIOP internally).

Resin has two proprietary protocols which are easy, on www.caucho.com (Hessian or whatever).

Or use Web services. Difficult, too, but cool, and you will need that technology during the next 10 years, too, probably.

Flat View: This topic has 1 reply on 1 page
Topic: arrays Previous Topic   Next Topic Topic: Need help(urgent)!!!!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use