|
Home > Archive > BizTalk Server Orchestration > April 2005 > message size problem?
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 |
message size problem?
|
|
|
| Hello!
I think I might have a problem with message size. I receive messages from a
web service and load the message payload into an XmlDocument in my
orchestration similar to:
MyMessage = new System.Xml.XmlDocument();
MyMessage.LoadXml(WebServiceResponse.GetResult);
GetResult is a string with the xml-encoded message.
Further assign the newly created MyMessage to a BTS-message, with a given
schema. I'm doing it in a message assignement shape.
Now the problem. Somehow, during this whole procedure the message gets
truncated. I know that the web service returns the whole message but when I
look at my created BTS message, it contains a fraction of the original
message.
What's the problem? Can it be the size or is there any other explanation?
Tanks in advance
| |
| Michel Prévost 2005-04-21, 5:49 pm |
| In the BTS admin console, right-click on the main node, and choose
properties. On the "Large Message" tab, there is a text box with a label
"Treshold". In BizTalk 2004, if a message is larger than that, it is
fragmented. Try to set a larger value (and restart the service, as a
precaution).
Best regards,
Michel
"Theo" <Theo@discussions.microsoft.com> wrote in message
news:BDDAF840-7D61-4AD9-845B-08FAE5D65B4A@microsoft.com...
> Hello!
>
> I think I might have a problem with message size. I receive messages from
> a
> web service and load the message payload into an XmlDocument in my
> orchestration similar to:
>
> MyMessage = new System.Xml.XmlDocument();
> MyMessage.LoadXml(WebServiceResponse.GetResult);
>
> GetResult is a string with the xml-encoded message.
>
> Further assign the newly created MyMessage to a BTS-message, with a given
> schema. I'm doing it in a message assignement shape.
>
> Now the problem. Somehow, during this whole procedure the message gets
> truncated. I know that the web service returns the whole message but when
> I
> look at my created BTS message, it contains a fraction of the original
> message.
>
> What's the problem? Can it be the size or is there any other explanation?
>
> Tanks in advance
|
|
|
|
|