Is there any library out there that will allow developers to pass objects from one language to another and then manipulate/change the objects and pass them back?
This would be a great and simple alternative to Messaging and XML systems out there. I read about Colors which seemed to be what I was searching for but from what I understand it hasn't been released yet.
In my Java application (or any language, but java for this example) I'd like to use something like:
import beans.Person;
...
PythonObj pythonObj = new PythonObj("http://192.168.1.54/personGET/myusername/mypassword");
Person person = pythonObj.getPerson();
Which would consume an object published by Python via GET.
So I'm guessing there would need to be a library for each language. No need for any external boilerplate strings/files (xml, json, csv, proto, etc etc) for configurations, etc. Just the library import...