10-16-04 02:09 AM
I need to created multiple records on my outbound schema from two fields
from my inbound schema.
For instance, my inbound instance would look like this.
<Root>
<Record>
<Field1>Invalid Company</Field1>
<Field2>Invalid Name</Field2>
</Record>
</Root>
My outbound instance needs to look like this.
<Root>
<ErrorReport>
<Body>
<Description>Invalid Company</Description>
</Body>
<Body>
<Description>Invalid Name</Description>
</Body>
</ErrorReport>
</Root>
As you can tell, the inbound instance only has one record with two fields,
and my outbound instance needs to have multiple body elements. Any ideas
how to solve this?
Regards,
Chris
[ Post a follow-up to this message ]
|