BizTalk

  Home  Microsoft .Net Technologies  BizTalk


“BizTalk frequently Asked Questions in various BizTalk job Interviews by interviewer. Get preparation of BizTalk job interview”



23 BizTalk Questions And Answers

21⟩ How many ways to restart the host instance in biztalk?

There are 4 ways to restart host instance:

1)VS 2008-->Select biztalk project-->properties-->in

deployment pane-->select host restart ti true

2)go to run cmd-->type services-->select our host instance's

SSO and click on restart

3)go to Biztalk admin console and select host instance and

right click -->restart

4)Go to cmd prompt and type the command for host instance

restart

 208 views

23⟩ Why messages are immutable inside Biztalk?

Reasons for message immutable: A received message might have

multiple subscribers (orchestration, sendports etc) means each

subscriber of a particular message references the same, single

copy of that message. So, it make sense the message is not

modified by any single service like Orchestration or

pipelines.

2. Since single copy is referenced by multiple subscribers, it

minimize storage. ( A ref counter is maintained for each

message and messages with ref count of 0 are periodically

removed.)

3. The concept of messages being immutable also allows for

detailed tracking of message state as messages flow through

the system.

 209 views