What is the recommended way to split messages in send pipelines?
Posted
by ToxicAvenger
on Stack Overflow
See other posts from Stack Overflow
or by ToxicAvenger
Published on 2010-05-28T09:09:09Z
Indexed on
2010/05/28
9:11 UTC
Read the original article
Hit count: 185
BizTalk
I need to split a bizTalk message in the send pipeline. This is easy with disassemblers in receive pipelines, but doesn't work in send pipelines (makes sense).
So what is the recommended way to do it? The only easy way to do it is to write the outbound message to file, then reprocess it using a receive pipeline with a disassembler, and then send the generated messages through a outbound pipeline. Honestly, I don't need the additional roundtrip through the message box, but I don't want to create a custom send adapter.
Any other suggestions? Any easy way to save messages with multiple parts using the ootb file adapter?
© Stack Overflow or respective owner