05-12-04 01:21 AM
Not knowing what your data looks like I'll give you a sample that should get
you going. It seems to me that your data is flat file data that looks
something like the following.
Request1, Field1, Field2,...
Request2, Field1, Field2,...
...
Request5000, Field1, Field2,...
If you have a flat file schema like the following:
<schema>
<RootRecord> delimited, child_order="postfix",
child_delimiter_type="hex", child_delimiter="0x0d 0x0a"
<RequestRecord> delimited, child_order="postfix",
child_delimiter_type="char", child_delimiter="," maxOccurs=1
<Field1></Field1>
<Field2></Field2>
..
</RequestRecord>
</RootRecord>
</schema>
This should break up your document into individual requests.
--
Dave
This posting is provided "AS IS" with no warranties, and confers no rights.
"Gavin" <gavin.eyre@rsl.com> wrote in message
news:661be5d2.0405081510.188a0359@posting.google.com...
> "David Downing [MSFT]" <ddowning@online.microsoft.com> wrote in message[/vbcol
]
news:<uUhWXSINEHA.2500@TK2MSFTNGP12.phx.gbl>...[vbcol=seagreen]
documents?[vbcol=seagreen]
>
> Basically we get a whole load of unrelated part orders from the legacy
> mainframe system. At the end of its processing cycle it gives me a
> single file containing all the parts we need to order - 5,000 line
> file with 5,000 requests in it. Each line is a single stand alone
> request subject to different business rules and each is totally
> unrelated to any other. I want to be able to pass 5000 separate
> documents into BizTalk and track each one individually.
>
>
> Gavin Eyre
[ Post a follow-up to this message ]
|