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>
<xs:element name="Journal">
...
</xs:element>
becomes:
<xs:element maxOccurs="unbounded" name="Journal">
...
</xs:element>
0 Comments:
Post a Comment
<< Home