I need to write a java program that sends objects over the network to a client program. The problem is that some of the objects that need to be sent are not serializable. How is this best tackled?
2 Answers
In enterprise world there is a special pattern Transfer object pattern. It suits your case ideally.