|
Home > Archive > BizTalk Server Orchestration > July 2004 > Nonschematic message
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 |
Nonschematic message
|
|
| maRek 2004-06-26, 10:53 am |
| Hi all,
I need to recieve different types of XML files and transform them into
given message type (scheme is known). I mean, there is any XML file in
the input (I don't know the structure), I want to create message (over
given scheme) and try to map elements with the same names together (It
is no problem to do it in an expression like AnyMessage.ID=MyMessage.ID,
....). Is it possible? How to do this?
Thanks,
maRek.
| |
| Christof 2004-06-26, 10:53 am |
| Some custom inline XSLT could do something similar, using some XPath
expression that work on the local-name() and match those...
Regards,
Christof
"maRek" <marek@anasoft.sk> wrote in message
news:%23nJ6nRDWEHA.2408@tk2msftngp13.phx.gbl...
> Hi all,
>
> I need to recieve different types of XML files and transform them into
> given message type (scheme is known). I mean, there is any XML file in
> the input (I don't know the structure), I want to create message (over
> given scheme) and try to map elements with the same names together (It
> is no problem to do it in an expression like AnyMessage.ID=MyMessage.ID,
> ...). Is it possible? How to do this?
>
> Thanks,
> maRek.
| |
| Kevin Lam [MS] 2004-06-26, 10:53 am |
| You can use a type-agnostic port on an orchestration to receive the message
and the map the message in an expression. A type-agnostic port is a port
which receives a message of type XmlDocument.
HTH,
Kevin
This posting is provided "AS IS" with no warranties, and confers no rights.
| |
|
| Type Agnostic Port has a performace overhead and should be used in scenarios where performance is secondary importance.
Jitendra
""Kevin Lam [MS]"" wrote:
> You can use a type-agnostic port on an orchestration to receive the message
> and the map the message in an expression. A type-agnostic port is a port
> which receives a message of type XmlDocument.
>
> HTH,
> Kevin
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
>
|
|
|
|
|