|
Home > Archive > BizTalk Server Orchestration > June 2006 > Load Xml with hihg performance?
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 |
Load Xml with hihg performance?
|
|
|
| Hello, I actually have in a orchestration the code: (in a Message Assignment)
xDocMessageIn.LoadXml(StringMessage_In);
How can I load the string in a XML document efficiently ?
| |
|
|
Hello,
If your StringMessage_In is already an xml document, you should be able to
make it's datatype xmlDocument in the initial receive shape, that way you
dont need to assign it since its xml from the get go.
Otherwise, the way you are assigning it is efficent.
BA
http://biztalkia.blogspot.com
> Hello, I actually have in a orchestration the code: (in a Message
> Assignment)
>
> xDocMessageIn.LoadXml(StringMessage_In);
>
> How can I load the string in a XML document efficiently ?
>
|
|
|
|
|