I'm using a dll in an orchestration and want to debug the dll. Has anyone an idea how to do this? Or is it maybe a better way to have a helper webservice instead of a dll? Just post ypur suggestions
Set the breakpoint in your assembly's code (make sure the assembly is in the GAC for BizTalk to use), then do "debug –> attach to process" and choose the "btsntsvc.exe" which is the standard BizTalk host service. Then when the orchestration calls your code it should jump into it.
Thanks for the reply, it works fine though you should have mentioned that i have to restart the host instance every time I change something in the assembly, would have saved me some time 😉