Martijn's blog - E-Commerce, EAI, BizTalk and .NET

2005/04/27

Suppressing automatic message splitting

If you have BizTalk automatically splitting up inbound messages and want to suppress this behaviour, set the maxOccurs property to "*" (unbounded) for any repeating structure you don't want BizTalk splitting up on:

<xs:element name="Journal">
...
</xs:element>

becomes:

<xs:element maxOccurs="unbounded" name="Journal">
...
</xs:element>

0 Comments:

Post a Comment

<< Home