biztalk custom pipelinecomponent split messages in send
Is it possible to create a custom pipelinecomponent that splits a mess开发者_如何学运维age in 2 messages, but in the send port? I have seen that it is possible in the receive port using the disassembler interface, but can we use this in a send pipeline component? Can someone give me an example to how to accomplish this?
Thx
Typically send ports are made for assembly and not dis-assembly, hence why the interface for a send port component has an assemble aspect to it. Is sounds like this would be a good opportunity to split the message via filters and use multiple send ports to send out the 2 messages. I've seen a few folks do this with writing the msgs to the file system, etc. but that screams bad practice. Think of splitting the messages before the pipeline components are needed.
精彩评论