Biztalk Orchestration

  Home  BizTalk Server  Biztalk Orchestration


“Biztalk Orchestration related Frequently Asked Questions by expert members with professional career as Biztalk Orchestration. These list of interview questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



50 Biztalk Orchestration Questions And Answers

45⟩ Please explain when a persistence point occurs at the Orchestration level?

The engine will save the state of an orchestration in the following circumstances:

☛ Send Shape (after a message is sent)

☛ Start Orchestration Shape

☛ Suspend Shape

☛ End of a Transactional Scope (atomic or long-running)

☛ An Orchestration Debugger breakpoint is hit

☛ Orchestration Engine determines that the instance needs to be dehydrated

☛ When the Orchestration Engine is shut down; through the controlled shutdown of the host or abnormal circumstances. The engine tries to persist but if that fails, the Orchestration instance will resume from the last successful persistence point.

 217 views

49⟩ Do you know how to route binary data?

To route binary data you can use pass-through pipelines on the receive location and send port. BizTalk will route (copy) the data from the source (receive location) to the destination (send port). If you want to route the binary data based on some information in the binary data then you write a custom Disassembler to promote the properties you need from the incoming message to route the binary data.

 239 views