In my previous post (“BizTalk Orchestration – Orchestration debugging inside Visual Studio”) I explain how to debug BizTalk 2004, 2006 or R2 orchestration in Visual Studio.
So how can I do this in BizTalk 2009 version?
When compiling a BizTalk Server 2009 project in Visual Studio classes (.cs) files are generated for the BizTalk artifacts. Those files are not part of the project and have the extension ‘.cs’, e.g.: .btp.cs, .xsd.cs, .btm.cs
I was expecting also a .odx.cs file, but that is not the case. The CS file for the Orchestration is placed in “objDebugBizTalkXLang” and is called File0.cs. If you open this file you can attach this file to your BizTalk process (where the Orchestration is hosted in) and of course place a breakpoint.
Another difference is that if we have more than one orchestration when we compile the solution, Visual Studio DON’T generate two CS files (File0.cs and File1.cs), he only generates one, and the two (or more) orchestrations code are inside the file: File0.cs
Inside this file he creates different class according to the orchestration Typename property, sample:
- sealed internal class BizTalk_Orchestration1: Microsoft.BizTalk.XLANGs.BTXEngine.BTXService …
- sealed internal class BizTalk_Orchestration2: Microsoft.BizTalk.XLANGs.BTXEngine.BTXService…
References:
- And special thanks to Thiago Almeida for responded in MSDN Forum and alert me to this new feature
- http://social.msdn.microsoft.com/Forums/en-US/biztalkgeneral/thread/8dcf9a88-4eb5-4a88-97d8-56bd44e55638
I am new to Biztalk.
My question is :
Can you please provide me the steps to debug orchestraion in 2010 ?
Is it possible to check the data present in each shape used in the orchestraions at run time ? (Like, In dot net we have quick watch which allows us to check values while debugging)
Any suggestions and links would be of great help!!! Thanks .