We are planing a project where we will have an eclipse based client communicating with an glassfish server (+ Oracle database). The business logic will reside on the server, the client should act more or less as an view. We consider using EMF for our model (+ hibernate + teneo).

I'm not quite sure how this all works together. The workflow/architecture/whatever I imagine is something like this:

  1. Create EMF model
  2. Generate java model (+ edit code) from it
  3. Use java model on the server together with hibernate/teneo to persist model objects in database
  4. Create a SOAP interface in the server, serialize model objects to XML as appropriate
  5. Use model on the client to access the SOAP interface of the server, serialize/deserialize model objects from/to XML and display (parts of the whole) model in eclipse

Is this basicly how it is intended? Or have I missed a central concept?

link|improve this question

76% accept rate
Yes, your workflow basically describes the process. You want to make sure all of your SOAP calls from the RCP are in their own threads, and not in the UI thread, for UI responsiveness. – Gilbert Le Blanc May 27 '11 at 14:03
Take a look at Eclipse CDO. Its main purpose is the sharing of EMF Models on a server to several clients -> wiki.eclipse.org/CDO – Tom Seidel May 28 '11 at 9:17
From what I have read I can use Teneo (for more Server based applications) or CDO (if I want to have more buisness logic on the client). But use them together does not make sense ... right? Wrong? – Arne May 28 '11 at 9:34
feedback

1 Answer

The link you are missing is called CDO. You can use this to transfer a live model to your client. So replace SOAP with CDO, and you are there!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.