Stephen W. Thomas BizTalk Blog

100% Pure BizTalk
posts - 130, comments - 139, trackbacks - 438

My Links

News

Subscribe to my blog via:


Add to Google

Visit my website at:
www.BizTalkGurus.com

Archives

BizTalk 2004 Samples

BizTalk 2006 Samples

BizTalk Videos

BizTalk White Papers

BizTalkBlogs.com

Great BizTalk Blogs

Other Links

Biztalk Server Interview Answers

I guess I was sleeping and forgot to post the answers to the BizTalk Interview Questions from a few posts ago. No worries though, Gustavo Echeverry went thought and answered them complete with reference!  Great work!

In any case, here are my answers.  Of course, in some cases it may be possible to have more then one right answer.

Development Focused Questions

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.

In BizTalk 2002, schemas were DTD based and allowed Xml Elements to be in any order inside a record using the <Any> keyword.  How is this different in BizTalk 2004?

·         BizTalk 2004 is XSD based.

·         BizTalk 2004 Elements default to <Sequence> and <Any> is no longer available.

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.

How do you call a Non-Serializable .Net helper class inside an Expression Shape?

·         Add a reference to that class.

·         Make sure your Orchestration is Long Running transactional.

·         Add an Atomic scope.

·         Create an Orchestration variable of that class inside the scope.

·         Create an instance on that object inside the scope.

·         Call the method.

·         Bonus: Mention the class must be strongly signed and in the GAC.

What if the class is Serializable?

·         No transactional Orchestration or Atomic scope is needed.

What does the Value Mapping Functoid do?

·         Returns the second parameter if the first parameter is true

How do you use Auto Mapping in the BizTalk 2004 mapper?

·         Select a top level node, hold down the Shift key, drag the top level node over to the other top level node.

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. (This default in the auto map messes me up every time.)

Step-by-step, how do you set up a basic, pure messaging solution taking in a flat file and send an Xml File out to 5 different places?

·         Create a Flat File schema

·         Create a Custom Pipeline using the Flat File Disassembler

·         Create a Receive Port

·         Create 5 Send Ports

·         Create a Send Port Group

·         Add each Send Port to the Send Port Group

·         Create a Filer on the Send Port Group using Bts.ReceivePortName (or something close to this)

·         Additional: no map is required but it is ok to mention it

Design (Architecture) Focused Questions

What is the difference between a Distinguished field and a Promoted Property?

·         Distinguished fields are light weight and can only be used inside an Orchestration.

·         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.

How do you achieve First-In-First-Out message processing of messages received from multiple sources using an Orchestration?

·         Use a Sequential Convoy to process the messages in the order they are received into the Message Box. 

·         Make sure Ordered Delivery is set to True inside the Orchestration Receive Port.

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?

·         Receive Ports and Orchestration Send Port are both publishers.

·         Ports and Orchestration Receive Ports are both subscribers.

When working with Schemas, Maps, Pipelines, and Orchestrations how should the projects be structured?

·         Schemas and Maps in its own project

·         Or Schemas and Maps together in its own project

·         Orchestrations in its own project

·         Pipelines in it own project

What is direct binding?

·         Direct binding has three types: direct to message box, self correlating, and partner ports.

·         Used to route message between the message box and Orchestrations without using bindings or from one Orchestration to another Orchestration.

What is BAM used for?

·         BAM is used to monitor business milestones and key metrics in near real-time throughout a process in BizTalk.

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.

What are Persistence Points and what causes them?

·         Persistence is when the state of a running Orchestration is stored into SQL.

·         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.

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).

What user rights to you need to perform most actions in HAT?

·         BizTalk Server Administrator

When installing Biztalk in a multi-server configuration with a remote SQL and Analysis Services, what SQL components do you need on the Biztalk Server?

·         SQL Analysis Services Client Tools

When installing Biztalk and SQL on a Windows XP SP2 Desktop, what pre-requests are required?

·         Correct answer: A Lot.  The best answer something like I have a custom written installation document I use or I always referrer to the most current updated installation guide from Microsoft. 

Print | posted on Thursday, December 29, 2005 2:07 PM |


Feedback

# re: Biztalk Server Interview Answers

Ah come on. How about why when scaling out a message box should we go from one to three? I gotta million of these. Good work. 1/19/2006 1:47 PM | Bryan Corazza

# re: Biztalk Server Interview Answers

Bryan Corazza:
How about why when scaling out a message box should we go from one to three?

easy one:

"When scaling out the Message Boxes, it is recommended to disable publishing on the Master Message Box so that all its resources can be allocated toward subscription creation, subscription deletion, and routing. This relieves contention on the Master Message Box, which is used to route data to the other Message Box databases. In a two Message Box database configuration, because only one Message Box handles all publishing, scaling out from one Message Box, which also happens to be the Master with publishing disabled, to two Message Boxes, where publishing is enabled, not much throughput improvement is realized. Scaling out to three or more Message Boxes helps provide a more linear throughput scale curve."

straight from the (one and only) BTS book...

/rob 1/26/2006 5:47 AM | rob

# Good Sites for FAQ's on Biztalk Server 2004

Friend's i was just searching for FAQ's about biztalk on google and got these sites.
Few questions are... 4/24/2006 11:07 PM | NISHIL

# Important Biztalk 2006 links

I am trying to put all the links in one place...
Biztalk 2006 Resources&nbsp;
MSDN Biztalk 2006&nbsp;Online... 5/2/2006 12:24 PM | Ganesh Paduvary

# re: Biztalk Server Interview Answers

this is the very good site for beginners of biztalk server 7/11/2006 12:39 AM | balaji

# re: Biztalk Server Interview Answers

This is very useful tool to improve the technical stuff in biztalk server 7/11/2006 12:43 AM | balaji

# re: Biztalk Server Interview Answers

FYI - BizTalk 2000/2, schemas were XDR based not DTD based.

Regards,
David
8/25/2006 2:03 PM | David Crawford

# re: Biztalk Server Interview Answers

Good catch.
Source here: http://msdn.microsoft.com/msdnmag/issues/0500/biztalk/ The pic shows the schema is a XDR. 8/25/2006 7:50 PM | Stephen W. Thomas

# Recursos sobre BizTalk Server 2006!

Estos d&iacute;as he estado preparando un peque&ntilde;o seminario sobre BTS 2006, l&oacute;gicamente 11/2/2006 5:11 AM | Blog del CIIN

# re: Biztalk Server Interview Answers


What's "Visio" Role in Orchestaion in Biztalk server 2006 ?. is we can designe Graphicaly process and put Logic for Drived All Or Part of business Process ?


Waiting for Response !

Naveen Eai.
5/18/2007 2:18 AM | Naveen Rai

# re: Biztalk Server Interview Answers

Hi,

Thanks for sharing your knowledge.

you will also enjoy following blog for dot net interview questions.

http://dng-ado.blogspot.com/
http://dng-dotnetframework.blogspot.com/
http://dng-oops.blogspot.com/
http://dng-config.blogspot.com/
http://dng-collections.blogspot.com/

Keep going good work
DotNetGuts (DNG)
http://dotnetguts.blogspot.com 6/6/2007 12:22 AM | DotNetGuts(DNG)

# re: Biztalk Server Interview Answers

i'm geting onle Proble:
when i put debug point to My Orchestation in HAT my
Orchestration Testing got successfull. but when i removed all debug point from my orchestration i send Requst successfully but Problem geting Response from Recieved Shape in Orchestation.

is some delay required to get response after sending request by send shpe ? 10/23/2007 6:17 AM | Naveen Rai

# interview question

You have the technical support manager of a major bank on the other line, and he is very upset because his server is down, and he wants the problem resolved in 1 hour. And you know that it would take at least 3 hours to get it resolved.

Tell me about the steps that you would take

tejas 11/16/2007 6:44 PM | tejas

# re: Biztalk Server Interview Answers

what is the main purpose of Biztalk server? 3/17/2008 1:05 PM | akhtar

# re: Biztalk Server Interview Answers

Mastering BizTalk Interview Questions did provide lots of questions that I had in my latest interview. Very good book and to the point
http://www.amazon.com/Mastering-BizTalk-Technical-Interview-Moustafa/dp/1435714687/ref=sr_1_1?ie=UTF8&s=books&qid=1214421665&sr=8-1 6/25/2008 2:21 PM | BTS Lover

# re: Biztalk Server Interview Answers

Here is a collection of Biztalk Interview Questions

http://www.oopsconcepts.com/Biztalk+Interview+Questions

7/12/2008 9:30 PM | Robert

# re: Biztalk Server Interview Answers

for more interview Question you can refer http://biztalk.synthasite.com/biztalk-server-interview-questions.php 8/13/2008 4:13 AM | Aditi

Post Comment

Title  
Name  
Email
Url
Comment   
Please add 3 and 4 and type the answer here:

Powered by: