Use Send Pipeline Component to assembly messages to one message.
-
11 mai 2012 20:56
I want to write a custom Assembly send pipeline component to assemble messages to one big message. Is it doable using send pipeline component? How does my assembler component know when it reaches the end and drops the file to the output folder?
Thanks in advance!
Toate mesajele
-
11 mai 2012 21:07Moderator
Hi
Check this similar question, It may answer your question.
HTH,
Naushad Alam
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer
alamnaushad.wordpress.com
My new TechNet Wiki "BizTalk Server: Performance Tuning & Optimization"- Marcat ca răspuns de s liu 11 mai 2012 22:14
-
11 mai 2012 21:36
You will need to assemble the messages using an orchestration by calling your send pipeline from within your orchestration. The messages can be assembled using a few different methods to determine the end of an interchange.
- By timeout... keep gathering messages for a certain amount of time then assemble the message into the interchange.
- By number of messages in the interchange... keep gathering messages until you have collected a certain number.
- A combination of above.
- Using an additional inbound control message to terminate the loop (never done this one, but should be possible).
David Downing... If this answers your question, please Mark as the Answer. If this post is helpful, please vote as helpful.
- Marcat ca răspuns de s liu 11 mai 2012 22:14
-
11 mai 2012 22:14
Thanks guys for the information! I'll read on those links to find out how I should implement it. So far I think you answered my question.
Thanks!!!