Hi, I've an XML file like the one below
<transaction name="TEST_EX" type="singletonComplex">
<vo class="svc.vo.UserProfile">
<field deepMapping="true">
<vo class="svc.vo.UserVO">
<field name="UserName" column="User_Name" type="String"/>
<field name="Age" column="User_Age" type="Integer"/>
</vo>
</field>
<field name="Address1" column="Address_1" type="String"/>
<field name="Address2" column="Address_2" type="String"/>
</vo>
</transaction>
Inside there are couple of fields. Some of the fields has deepMapping enabled to true.I want' to make sure that, if deepMapping is enabled, then it should be listed first, ie ahead of "Address1" and "Address2". I've created an XSD file, but I'm not sure how I can implement this in that XSD file. Please help me.