Hi,
Assuming as per the a given xml schema the xml should be like this,
<parent>
<child1>1</child1>
<child2>2</child2>
<child3>3</child3>
</parent>
whereas the incoming xml is given below
<parent>
<child1>1</child1>
<child3>3</child3>
</parent>
Objective is to add the missing element <child2>2</child2> using the
auto complete feature. We see that it always adds the missing element as
the last child
<parent>
<child1>1</child1>
<child3>3</child3>
<child2>2</child2>
</parent>
here the child2 element has to be added before child3 element, but it
gets added after the child3 element. Is there a way to correct this
behavior.
regards,
sathwik