XML mapping a list of objects with association

2
I have a problem with my webservice xml mapping. My model consists of an object System with a 0 -> 1 relation to my other object Application. From my imported webservice I receive a list of objects which I want to map as Application objects, linked to my System object. How can I do this?
asked
1 answers
10

You can pass the System object as a parameter to the XML mapping by configuring the XML Mapping property "Parameter". Then, you can map the returned web service objects to Application objects, and automatically fill the association to the System object by selecting the association in the object mapping form of the application XML object.

answered