I noticed, when looking through the inheritance structure for Entity, that MarshalByRefObject is no longer present, unlike 3.x. We make great use of the fact that DO persistent objects are remotable. Is there any plan to add that capability?

Thanks.

This thread was imported from our support forum. The original discussion may contain more detailed answer. Original topic by msawczyn.

asked Jun 24 '09 at 14:02

Editor's gravatar image

Editor
46156156157


One Answer:

No, we won't add this. The possibility to marshal them by ref was usually leading to chatty client-server interaction. Of course this worked, but you should do a lot to make this work well, i.e. in general, people were following this path:

  • Get working, but chatty (=slow) interface from scratch

  • Optimize it to make it less chatty - by providing services returning Offlines, and so on.

Now we're going to propose better pattern: we won't support MBRs (we can, by this will just confuse the people), but it will be possible to use Sync for any Domain. Sync is much less chatty by its nature (i.e. the smallest unit of information it delivers is the whole entity state, rather than e.g. single property; normally it will deliver the whole query results). Internally it will rely on a WCF service shared by master Domain, so in fact, Sync makes remote master Domain looking as if it would be marshaled by reference, but internally it will work as stateless SOA service.

So basically, working with sync means:

  • Client get the server side state in bulks

  • Client send the updates to server in bulks as well - any client-to-server update is issued by an explicit command on the client. Until this command is issued, all the changes (either top-level method calls or state changes) are gathered by Atomicity framework and applied only to the local database (cache) on the client. Our IMDB is implemented exactly for this purpose, although you can use any other database we support to act as such a cache.

Both these features imply you get almost ideal client-server interaction right from scratch. Moreover, you get almost the same result: you use absolutely the same entities on server and client, almost like with MBRs.

answered Jun 24 '09 at 15:36

Alex%20Yakunin's gravatar image

Alex Yakunin
29714412

Your answer
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!
toggle preview

powered by OSQA