|
Home > Archive > BizTalk Server Orchestration > October 2004 > One to Many in Mapper
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
One to Many in Mapper
|
|
|
| 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
| |
|
| Figured it out. Good blog on how it is done.
http://dotnetjunkies.com/WebLog/jlynch/
Chris
"Chris" <cahale@shellopus.com> wrote in message
news:%23yBxXeisEHA.2560@TK2MSFTNGP14.phx.gbl...
> 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
>
>
>
>
|
|
|
|
|