Woo my first IT related blog moment.
I built an envelope orchestration using
http://weblogs.asp.net/jan/archive/2004/03/07/85259.aspx
The orchestration uses envelopes to seperate an incoming file
into individual lines to be processed seperately. This is all works
great, but I can not promote any properties on the document schema used
in the envelope. I kept getting
"The disassembler encountered an envelope that does not contain the body
element. "
After a quick post to the local BizTalk mailing list www.dot.net.nz I got this helpful reply from Iain Campion. Cheers Iain.
--------------------------------
Yes it is a known bug at MS.
You have to have two schema's one that is used in the pipeline and the
other when in the orchestration.
We had the same problem and this is the MS solution.
Make sure you have all these in separate projects.
I.e.
+ schema PROJECT
+ pipeline PROJECT
+ orchestration PROJECT
--------------------------------