Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Need Unique ID for a batch of messages › Re: Need Unique ID for a batch of messages
November 21, 2006 at 8:31 PM
#16483
You just need to promote a value into the message context.
Here are the steps at a high level:
- Create a property schema with a MessageContext type property
- Create a custom pipeline component to promote your batch id into this property
- In code, create a batch id and promote it
- Create a custom pipeline using your new pipeline component.
I think I have bits and pieces of all this on this site. Look at some of the BizTalk 2004 Samples. The hardest part is the custom pipeline component.
To give you an idea, this is probably 8 hours of work.