Re: how to pass the file adapter drop location folder name into the orchestration in biztalk 2010?

Home Page Forums BizTalk 2004 – BizTalk 2010 how to pass the file adapter drop location folder name into the orchestration in biztalk 2010? Re: how to pass the file adapter drop location folder name into the orchestration in biztalk 2010?

#26127

Hi Ty,

  This is a pretty straightforward answer to your question:

   In your orchestration, you define a message associated with your receive port that activates your orchestration (let's call this message mInitOrch). Then, in an Expression shape, you can reference the property for this message that return the drop location folder name by using this statement:

vMyString = mInitOrch(BTS.InboundTransportLocation);

  vMyString is a variable of type String in your orchestration.

  I hope this helps.