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

Preface

(MCTS): Microsoft BizTalk Server 2010 (70-595) Certification Guide will give you all the information you need to pass the 70-595 TS: Developing Business Process and Integration Solutions exam with Microsoft BizTalk Server 2010.

The book's intent has been to be as focused as possible on providing content for just what you need to know, while still providing context to allow you to understand rather than just remember. Coverage of additional topics not included in the exam have been filtered out to reduce the noise.

Also included are over 50 sample questions that help to re-inforce what you need to know as well as to provide practice at the type and style of questions given in the exam itself.

At the same time that the book is tailored to fit the exam, you will not find the actual words or questions of the exam in this book. This book was made to help you, to strengthen your knowledge of the product and to allow you to focus your learning towards a goal. It is not a cheat sheet. But, if you understand the content of this book, you will pass the exam.

The book follows the same outline as the exam to provide mapping towards certification objectives. This helps you practice, as well as better understand, the certification objectives you are strong in and those which may need development. The certification objectives are supplied at http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-595.

What this book covers

Chapter 1, Configuring a Messaging Architecture, covers the core architecture of BizTalk, including publish/subscribe, context and content-based routing, Receive and Send Ports, and other administrative artifacts.

Chapter 2, Developing BizTalk Artifacts — Creating Schemas and Pipelines, covers creating rich and useful Schemas with restrictions and reusable types.

Chapter 3, Developing BizTalk Artifacts — Creating Maps, covers creating Maps and applying logic, such as conditional mapping, looping, scripting, and external assemblies, and other map and functoid logic.

Chapter 4, Developing BizTalk Artifacts — Creating Orchestrations, covers creating Orchestrations and working with messages, scopes, transactions, binding, correlation, and other shapes, and processing logic.

Chapter 5, Debugging and Exception Handling, covers handling exceptions in messaging and Orchestration scenarios, and recovering from them using catch, compensation, and failed message routing.

Chapter 6, Deploying, Tracking, and Administrating a BizTalk Server 2010 Solution, covers performing administrative tasks, such as installing, configuring, tuning, deploying, maintaining, and troubleshooting BizTalk Server 2010 groups and solutions.

Chapter 7, Integrating Web Services and Windows Communication Foundation (WCF) Services, covers working with web services and WCF, exposing and consuming services, and applying custom configurations and behaviors.

Chapter 8, Implementing Extended Capabilities, covers using the additional features in BizTalk, such as Business Rules Engine (BRE), EDI, RFID, and Business Activity Monitoring (BAM).

Chapter 9, Certification Test Taking Tips and Tricks, covers additional resources for learning and tips, tricks, and strategies for preparing for and taking the certification.

Chapter 10, Sample Certification Test Questions, contains additional sample certification questions to reinforce what you learned and provides training on the certification format.

Appendix A, Test Your Knowledge — Answers, contains the answers and short explanations to the Test Your Knowledge question contained in each chapter.

Appendix B, Sample Certification Test Questions — Answers, contains the answers and short explanations to the sample certification questions in Chapter 10, Sample Certification Test Questions.

What you need for this book

This book comes with sample code to provide hands-on and practical implementation of the theory provided in the book. In some cases, the code is meant to be viewed in Visual Studio, and at other times, to be deployed to show the aspects of deployment, configuration, or runtime. To view, deploy, and run the code, you need the following:

  • Windows Server 2008 R2 or Windows Server 2008 SP2 or Windows 7 or Windows Vista SP2

  • IIS 7.0 or IIS 7.5

  • .NET Framework 4 and .NET Framework 3.5 SP1

  • SQL Server 2008 R2 Developer edition or SQL Server 2008 SP1 Developer edition

  • Visual Studio 2010 with Visual C#.NET and Visual Web Developer

  • BizTalk Server 2010 Developer edition

  • Excel 2010 or Excel 2007 (for Business Activity Monitoring)

  • MSMQ (for RFID)

Who this book is for

This book is for anyone wanting to achieve the certification of Microsoft Certified Technology Specialist (MCTS): Microsoft BizTalk Server 2010, by passing the exam 70-595: TS: Developing Business Process and Integration Solutions by Using Microsoft BizTalk Server 2010 exam.

The target audience for this book is similar as for the exam. The typical reader is someone who works as a BizTalk developer today. You are familiar with the product, and the technology in and around it, having had at least a year or so of exposure to primarily developing BizTalk Server integration solutions, but perhaps not using all parts of the product.

Even senior BizTalk developers aiming to get certified will benefit from this book.

This book is not for someone who wants to use it to learn the basics of BizTalk server, as it will start from a level and continue at a pace that assumes you are accustomed to those basics already.

The description of the typical exam candidate, as listed on the certification web page, suggests a little more than this:

Candidates should have at least two years of experience developing, deploying, testing, troubleshooting and debugging BizTalk Server 2006 or later across multiple projects and have experience using the Microsoft .NET Framework, XML, Microsoft Visual Studio, Microsoft SQL Server, Web services, and WCF while developing BizTalk integration solutions.

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "It either takes a date or a datetime string."

A block of code is set as follows:

public interface IThirdPartyFinanceService
{
[OperationContract]
FinanceResponse ThirdPartyFinanceApproval
(FinanceRequest fRequest);
} (in Code packt style)

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Clicking on the Next button moves you to the next screen."

Note

Warnings or important notes appear in a box like this.

Note

Tips and tricks appear like this.

Reader feedback

Feedback from our readers is always welcome. Let us know what you think about this book — what you liked or may have disliked. Reader feedback is important for us to develop titles that you really get the most out of.

To send us general feedback, simply send an e-mail to , and mention the book title via the subject of your message.

If there is a book that you need and would like to see us publish, please send us a note in the SUGGESTATITLE form on www.packtpub.com or e-mail .

If there is a topic that you have expertise in and you are interested in either writing or contributing to a book, see our author guide on www.packtpub.com/authors.

Customer support

Now that you are the proud owner of a Packt book, we have a number of things to help you to get the most from your purchase.

Downloading the example code

You can download the example code files for all Packt books you have purchased from your account at http://www.packtpub.com. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.

Errata

Although we have taken every care to ensure the accuracy of our content, mistakes do happen. If you find a mistake in one of our books — maybe a mistake in the text or the code — we would be grateful if you would report this to us. By doing so, you can save other readers from frustration and help us improve subsequent versions of this book. If you find any errata, please report them by visiting http://www.packtpub.com/support, selecting your book, clicking on the erratasubmissionform link, and entering the details of your errata. Once your errata are verified, your submission will be accepted and the errata will be uploaded on our website, or added to any list of existing errata, under the Errata section of that title. Any existing errata can be viewed by selecting your title from http://www.packtpub.com/support.

Piracy

Piracy of copyright material on the Internet is an ongoing problem across all media. At Packt, we take the protection of our copyright and licenses very seriously. If you come across any illegal copies of our works, in any form, on the Internet, please provide us with the location address or website name immediately so that we can pursue a remedy.

Please contact us at with a link to the suspected pirated material.

We appreciate your help in protecting our authors, and our ability to bring you valuable content.

Questions

You can contact us at if you are having a problem with any aspect of the book, and we will do our best to address it.