Microsoft 70-241 Real Exam Questions
TS: Developing Business Process and Integration Solutions by Using Microsoft BizTalk Server 2006 R2
This exam is intended for candidates developing business solutions using Microsoft BizTalk Server 2006 R2.
1: You use Microsoft BizTalk Server 2006 R2.
You develop three schemas named Account, AccountCreateRequest, and AccountCreateResponse. All three schemas have a property named AccountID.
You develop an orchestration that consists of two Receive shapes, one Send shape, and several other shapes. The orchestration performs the following steps in the order shown.
1. Receives an incoming document that matches the Account schema
2. Maps the incoming document to the AccountCreateRequest schema
3. Sends the AccountCreateRequest message to the MessageBox database
4. Receives messages that match the AccountCreateResponse schema back from the MessageBox database
5. Logs a message to the event log if the AccountCreateResponse message indicates any errors
You create a correlation set and a correlation type that are based on the AccountID property. The correlation set is named CorrelationAccountID.
You need to ensure that multiple instances of the orchestration can run at the same time, and that each one can process a unique account ID.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A.Set the Following Correlation property on the Send shape to be equal to CorrelationAccountID.
B.Initialize CorrelationAccountID on the second Receive shape.
C.Set the Following Correlation property on the second Receive shape to be equal to CorrelationAccountID.
D.Initialize CorrelationAccountID on the Send shape.
E.Initialize CorrelationAccountID on the first Receive shape.
Correct Answers: C D
2: You use Microsoft BizTalk Server 2006 R2. You create an orchestration that contains a scope with multiple exception handlers. The exception handlers address exceptions that are raised based on exception type. While processing a financial transaction message, the orchestration encounters a Divide by Zero error and raises a DivideByZeroException. The value that is being divided by zero is not provided. You need to raise an ArgumentNullException. What should you do?
A.Catch the ArgumentNullException. Throw the DivideByZeroException.
B.Catch the DivideByZeroException. Throw the ArgumentNullException.
C.Catch the DivideByZeroException. Use a Compensation shape to roll back the orchestration.
D.Use a Loop shape and an Expression shape to iterate the Exception collection, and throw both exception types.
E.Use a Parallel Actions shape. In one branch, throw the DivideByZeroException. In another branch, throw the ArgumentNullException.
Correct Answers: B
3: You use Microsoft BizTalk Server 2006 R2.
Your business partner sends you an order message by using the HTTP adapter. The message content is shown in the following XML segment.
<Order Id="20090101">
<Item SKU="ABC" Quantity="4" />
<Item SKU="DEF" Quantity="3" />
<Item SKU="GHI" Quantity="GHI" />
<Item SKU="JKL" Quantity="6" />
</Order>
When the receive pipeline attempts to split the item nodes into separate messages, the process fails on the third Item node. The order is rolled back and marked as Suspended.
You need to ensure that valid Item nodes are processed. You need to ensure that invalid Item nodes are placed in the Suspended queue.
What should you do?
A.Enable recoverable interchange processing in the receive pipelines XML Disassembler.
B.Enable recoverable interchange processing in the receive pipelines Flat File Disassembler.
C.Enable the Validate document structure property in the receive pipelines XML Disassembler.
D.Enable the Validate document structure property in the receive pipelines Flat File Disassembler.
Correct Answers: A
4: You use Microsoft BizTalk Server 2006 R2. Messages that you receive from a business partner must be processed according to an ordered, first-in first-out (FIFO) model. You create an orchestration. You add an MSMQ receive port and set the Ordered Processing property to True. You create a send port and tie it to a Send shape. You place the Send shape within a Loop shape. You need to complete the orchestration using the FIFO model. What should you do?
A.Create a single Receive shape that is tied to the MSMQ receive port.Configure the incoming port to be self-correlating. Set the Receive shapes Activate property to True. Place the Receive shape within the Loop shape.
B.Create one correlation set. Create a single Receive shape that is tied to the MSMQ receive port. Configure the Receive shape to initialize the correlation set. Set the Receive shapes Activate property to True, and select the Ordered delivery check box. Place the Receive shape within the Loop shape.
C.Create one correlation set. Create two Receive shapes that are both tied to the same incoming port.Configure the first Receive shape to initialize the correlation set, set the Activate property to True, and select the Ordered delivery check box. Set the second Receive shape to follow the correlation set. Place the second Receive shape within the Loop shape.
D.Create two correlation sets. Create two Receive shapes. Configure the first Receive shape to initialize the first correlation set, set the Activate property to True, and select the Ordered delivery check box.Configure the second Receive shape to initialize the second correlation set. Place the second Receive shape within the Loop shape.
Correct Answers: C
5: You use Microsoft BizTalk Server 2006 R2. You create an interchange that will send messages to a private queue. You plan to use the WCF-NetMsmq adapter. A queue named Queue1 exists on a server named Server1. You need to configure the address (URI) for the WCF-NetMsmq adapter to point to Queue1. Which string value should you type for the URI?
A.net.msmq://Server1/Queue1
B.net.msmq://Server1/private/Queue1
C.wcf.msmq://Server1/Queue1
D.wcf.msmq://Server1/private/Queue1
Correct Answers: B
6: You use Microsoft BizTalk Server 2006 R2. Your business partner sends you a flat file. You use a map to transform the flat file into an internal format. You need to validate the transformation. What should you do?
A.Open the map file by using Microsoft Internet Explorer. Ensure that the XSLT is in a valid format.
B.Create an orchestration that contains a Transform shape. Set the map on the Transform shape. Execute the orchestration. Open Health and Activity Tracking (HAT) to validate that the orchestration finished successfully.
C.Use Microsoft Visual Studio .NET 2005 to configure the input and output instance properties on the maps Property Pages dialog box. Select the Test Map action from the maps shortcut menu.
D.Use Microsoft Visual Studio .NET 2005 to configure the input and output instance properties on the maps Property Pages dialog box. Select the Validate Map action from the maps shortcut menu.
Correct Answers: C
7: You are developing a solution by using Microsoft BizTalk Server 2006 R2. Your company wants to send EDI documents to a trading partner. You need to create and configure the BizTalk artifacts that represent the trading partner. What should you do?
A.Create a schema to represent the trading partner configuration.Deploy this schema to the BizTalk EDI Application node.Create a send port and add the EdiSend pipeline to this port.
B.Create a send port and add the EdiSend pipeline to this port. Type the trading partner configuration information in the pipeline properties.Create a BizTalk party that represents the trading partner, and tie this party to the send port.
C.Create a BizTalk party that represents the trading partner. On the EDI Properties page for this party, type the trading partner configuration information in the Party as Interchange Sender properties.
D.Create a BizTalk party that represents the trading partner. On the EDI Properties page for this party, type the trading partner configuration information in the Party as Interchange Receiver properties.
Correct Answers: D
8: You use Microsoft BizTalk Server 2006 R2. You create two orchestrations. The first orchestration has no configured ports, but it does have multiple orchestration parameters. You need to configure the second orchestration to pass parameters to the first orchestration and receive a response back. What should you do?
A.Add a Start Orchestration shape to the second orchestration, and then call the first orchestration.
B.Add a Call Orchestration shape to the second orchestration, and then call the first orchestration.
C.Call the first orchestration from the second orchestration by using direct binding. Send the response back by using direct binding.
D.Call the first orchestration from the second orchestration by using correlation. Send the response back by using correlation.
Correct Answers: B
9: You use Microsoft BizTalk Server 2006 R2. You create an orchestration that has a send port, two receive ports, a Parallel shape, and several Expression shapes. You need to debug the orchestration by stepping through the shapes. What should you do?
A.Enable the Enable routing for failed messages property on each of the ports. Set breakpoints by using Microsoft Visual Studio 2005.
B.Use Health and Activity Tracking (HAT) to locate an instance of the orchestration, and then use the Orchestration Debugger to set breakpoints.
C.Using Microsoft Visual Studio 2005, from the Debug menu, select Attach to Process. Select the BTNTSvc.exe process from the list of available processes. Set breakpoints in Visual Studio.
D.Using the BizTalk administration console, locate an instance of the orchestration, and open the Routing Failure Report. Set breakpoints by using Microsoft Visual Studio 2005.
Correct Answers: B
10: You use Microsoft BizTalk Server 2006 R2. You have an orchestration that has several steps. You want to track the orchestration by using Business Activity Monitoring (BAM). You create a BAM definition that has several activities. You need to modify the dimensions that are associated with these activity components. What should you do?
A.Use the Business Rule Composer to create a new rule in the policy that is used by the definition.
B.Use the Tracking Profile Editor (TPE).
C.Use Microsoft Excel to modify the Pivot Table Field List.
D.Use the Business Activity Monitoring Activity Definition Wizard.
Correct Answers: D
Download | Password: certificatexam.com