Hi all,
I am trying to use hibernate with XMLRPC to provide remote access to a legacy database. I was just wondering if anyone else has any experience with this as I am having problems unmarshalling Sets so that they are acceptable to Hibernate. For example: I have a table (Foo) that has a many-to-many relationship with another (Bar). This maps to a Set in the Foo Java object. In XMLRPC this ends up being represented by a nested array of Bar structs, which needs to somehow be unmarshalled and converted into a Set so that it can be assigned to the Java object. Can anyone point me at any resources that discuss sensible ways of teaming up XMLRPC with hibernate to provide remote access to a database?
Thanks,
Alan
|