Book Image

(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide

By : Johan Hedberg, Kent Weare , Morten la Cour
Book Image

(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide

By: Johan Hedberg, Kent Weare , Morten la Cour

Overview of this book

<p>Microsoft BizTalk Server 2010 is an Integration and connectivity server solution that enables organizations to easily connect disparate systems. Developing Business Process and Integration Solutions by Using Microsoft BizTalk Server 2010 (70-595) is the certification exam for professionals who need to integrate multiple disparate systems, applications, and data as well as automate business processes by using BizTalk Server.<br /><br /><i>(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide</i> will show you how to prepare for and pass the Microsoft BizTalk Server 2010 (70-595) exam and become a Microsoft Certified Technology Specialist (MCTS) in Microsoft BizTalk Server 2010. <br /><br />Packed with practical examples and Q&amp;As, <i>(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide</i> covers the keys skills in the exam and starts by showing you how to configure a Messaging Architecture. The book then dives into BizTalk Artifacts such as creating Schemas and Pipelines, creating Maps and creating Orchestrations. It then moves on to topics such as debugging and exception handling, deploying, tracking and administrating a BizTalk Server 2010 solution, integrating Web Services and Windows Communication Foundation (WCF) Services and implementing Extended Capabilities. Additional practical resources are also included that will enable you to approach the Microsoft BizTalk Server 2010 (70-595) exam with ease, including certification test taking tips and tricks and sample certification test questions.</p>
Table of Contents (18 chapters)
(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface

Debugging and exception handling


  1. 1. Answer: d

    You must enable Failed Message Routing on the Receive Port where processing fails, and you must add a filter on ErrorReport.ReceivePortName to the SendFailureNotification Port. The BTS.ReceivePortName property is available, but will not be promoted in a failed message and cannot be used for routing.

  2. 2. Answer: c

    RecoverableInterchangeProcessing is a property on the XMLDisassembler component. Configured to True it allows successfully processed messages from a batch through while suspending only the incorrect ones. By default the property is False, which means that one incorrectly formatted message fails the entire batch. Ordered Delivery does not help with this, nor does processing instructions.

  3. 3. Answer: b

    You need to set Enable Unit Testing to True. References to Microsoft.BizTalk.TestTools and Microsoft.XLANGs.BaseTypes are needed, but you do not need to add them manually. Also, when setting Enable Unit Testing to True, the Schema will get the TestableSchemaBase as its base class, which surfaces the ValidateInstance method on the Schema class. You cannot cast a Schema that does not inherit from the TestableSchemaBase class to that class and use the ValidateInstance method.

  4. 4. Answer: d

    You need to use a scope with an exception block to be able to catch the exception. Once caught, the Orchestration will terminate without suspending. The Throw Exception shape will re-throw the exception and cause the Orchestration to become suspended. The Report to Analyst option is connected to the Orchestration Designer for Business Analysts (ODBA), and has nothing to do with exception handling.

  5. 5. Answer: a

    In order to get rid of suspended messages on a Send Port that fails processing, you must enable Failed Message Routing and create a subscription that matches any of the ErrorReport properties, for example SendPortName. Subscribing to BTS.AckType and BTS.AckSendPortName will get you the NACK message (the exception) but you will not avoid the suspended message. Also, Delivery Notification does not help you avoid suspended messages either.