We are planning to move our user interface to Flex as our applications needs that kind of user interface. To use flex, you have to expose your backend via Web Services (Java Remoting is out for us because of cost). However, our entire backend is Hibernate based and they cannot be simply returned back not only because of proxy serialization/deserialization issues but also, that serializing one object could serialize the entire database!
One solution is to use valueobjects and selectively populate them but I feel there must be a better solution.
I would like to know if others have faced this problem and how they have handled it.
Thanks!
|