Thursday, November 1, 2007

BizTalk

1. What is BizTalk?
Biztalk is a messaging based integration tool.Bonus:It consists of several different pieces including Business Processes (Orchestrations), BAM, Rules Engines, and HAT.
2. What is a Message Type (i.e. BTS.MessageType) and how is it used in BizTalk?
Message Type is a BizTalk System property that is promoted inside a Pipeline. It is made up of Document Name Space # Root Node Name.
3. What is the default mapping for Auto Mapping?
The default is by structure.This can be change to by node name on the map properties.
4. How do you call a Non-Serializable .Net helper class inside an Expression Shape?
o Add a reference to that class.
o Make sure your Orchestration is Long Running transactional.
o Add an Atomic scope.
o Create an Orchestration variable of that class inside the scope.
o Create an instance on that object inside the scope.
o Call the method.
o Bonus: Mention the class must be strongly signed and in the GAC.
5. What if the class is Serializable?
No transactional Orchestration or Atomic scope is needed.
6. What does the Value Mapping Functoid do?
Returns the second parameter if the first parameter is true
7. What is the difference between a Distinguished field and a Promoted Property?
o Distinguished fields are light weight and can only be used inside an Orchestration.
o Promoted Properties are defined inside a property schema, are tracking in SQL, can be tracked in HAT, and can be used for content based routing.
8. How do you achieve First-In-First-Out message processing of messages received from multiple sources using an Orchestration?
o Use a Sequential Convoy to process the messages in the order they are received into the Message Box.
o Make sure Ordered Delivery is set to True inside the Orchestration Receive Port.
9.
At high level, what do Receive Ports and Orchestration Send Port really do in terms of messaging? What about Send Ports and Orchestration Receive Ports?
o Receive Ports and Orchestration Send Port are both publishers.
o Ports and Orchestration Receive Ports are both subscribers.
10. When working with Schemas, Maps, Pipelines, and Orchestrations how should the projects be structured?
o Schemas and Maps in its own project.
o Or Schemas and Maps together in its own project.
o Orchestrations in its own project.
o Pipelines in it own project.
11. What is direct binding?
o Direct binding has three types: direct to message box, self correlating, and partner ports.
o Used to route message between the message box and Orchestrations without using bindings or from one Orchestration to another Orchestration.
12. What is BAM used for?
BAM is used to monitor business milestones and key metrics in near real-time throughout a process in BizTalk.
13. What is the Rules Engine?
Rules are used to provide highly efficient, easily changeable business rules evaluation to Business Processes. This allows rules to be changed without rebuilding and redeploying .net assemblies. The Business Rules Engine (BRE) can also be called from any .net component through the API’s
14. What are Persistence Points and what causes them?
o Persistence is when the state of a running Orchestration is stored into SQL.
o It is good enough to know various shape and actions cause persistence. More specifically, it occurs: end of a transactional scope, at a send shape, at a start Orchestration shape, during dehydration, if the system shuts down expectedly or unexpectedly, or the business process suspends or ends.
15. What group does a user need to belong to in order to submit messages to the message box?
The user needs to be a member of the hot group or isolated host group (assuming a default installation).
16. What user rights to you need to perform most actions in HAT?
o BizTalk Server Administrator
When installing Biztalk in a multi-server configuration with a remote SQL and Analysis Services

No comments: