I've made some significant progress - I've been able to put together a dual store objectstore that can redirect requests either to the standard object store or to Joomla via a REST call, but I am now having to deal with an annoying quirk:
The bytecode enhancers are making it very difficult for me to update / save an object without numerous calls to the object store - Every field that is updated causes a call to the objectstore - even while the objectstore is loading the object for the first time... Is it possible to turn off or over-ride the bytecode enhancements for a single domain entity class? By the way, I'm using some simple http calls and Google's GSon library to handle the JSON serialisaton. My entities properties don't map nicely onto the remote table, so I'm having to do some manual field assignments via an intermediate class (perhaps later I'll find out about annotations that'll help me automate this). Regards, Kevin
