Skip to main content

BizTalk Video Tutorial links


Biztalk Server 2010: EAI Video Tutorial

Biztalk Server 2010: EAI Video Tutorial 1: Introduction
Biztalk Server 2010: EAI Video Tutorial 2: Define Schemas and Map
Biztalk Server 2010: EAI Video Tutorial 3: Define the Business Process
Biztalk Server 2010: EAI Video Tutorial 4: Deploy the Solution



Biztalk Server 2010: EDI Video Tutorial

Biztalk Server 2010: EDI Video Tutorial 1: Introduction
Biztalk Server 2010: EDI Video Tutorial 2: Create Trading Partners and Business Profiles
Biztalk Server 2010: EDI Video Tutorial 3: Create Send and Receive Ports
Biztalk Server 2010: EDI Video Tutorial 4: Create Trading Partner Agreement
Biztalk Server 2010: EDI Video Tutorial 5: Test the Solution



Biztal Server 2010: Video Tutorial: Processing Flat Files
Video Tutorial: FTP Adapter Enhancements in BizTalk Server 2010
BizTalk Server 2010 and Windows Azure
BizTalk Server 2010 and AppFabric  Cache Part 1
BizTalk Server 2010 and AppFabric  Cache Part 2
Biztalk Server 2010 Integration to SharePoint 2010 Part 1
Biztalk Server 2010 Integration to SharePoint 2010 Part 2
Biztalk 2010 Testing using CAT Logging Framework
Biztalk 2010: Calling Business Rules from .Net Application
Biztalk 2010: Tracking Rules Execution in a .NET Application
Biztalk 2010: Publishing a Business Rules Policy as a Service



Biztalk Server 2010: How Do I -- Videos

How Do I: BizTalk Server, SOA and the Shift to the Cloud  Part 1
How Do I: BizTalk Server, SOA and the Shift to the Cloud  Part 2
How Do I: BizTalk Server - Development Best Practices  Part 1
How Do I: BizTalk Server - Development Best Practices  Part 2
How Do I: Inside the Windows Application Server Enhancements known as Dublin  Part 1
How Do I: Inside the Windows Application Server Enhancements known as Dublin  Part 2
How Do I: BizTalk 2009 – End to end performance testing  Part 1
How Do I: BizTalk 2009 – End to end performance testing  Part 2
How Do I: 10 Most Important Orchestration Patterns  Part 1
How Do I: 10 Most Important Orchestration Patterns  Part 2
How Do I: Use Team Foundation Server for BizTalk Server 2009 development?
How Do I: Building Pipeline Components with Forward Only Streaming
How to use and install BizTalk Benchmark Wizard?
How Do I: Instrument my  BizTalk Server



BizTalk Server 2010: Performance Optimization Patterns
Mapper UI Enhancements: Creating a New Map
Mapper UI Enhancements: Modifying an Existing Map
Settings Dashboard: Managing BizTalk Group Settings
BizTalk Workflow Integration
FTP Adapter Enhancements in BizTalk Server 2010





Biztalk Server Conference Videos: Applied Architecture Patterns

Biztalk Server Conference: Welcome and Introduction
Choosing The Right Tool in the Application Platform
Tech Overview: SQL Server
Tech Overview: BizTalk Server
Pattern #1 – Simple Workflow
Pattern #2 – Content Based Routing
Pattern #3 – Human Workflow with Repair
Pattern #4 – Cross-Organization Supply Chain
Pattern #5 – Remote Message Broadcast
Pattern #6 – Complex Event Processing





Comments

Popular posts from this blog

WCF MaxReceivedMessageSize max value in .config

MaxReceivedMessageSize parameter in binding config   file:   For max file size in WCF, we need to set following parameter in binding files. <binding name="MyService"        maxReceivedMessageSize="2147483647"        maxBufferSize="2147483647" transferMode="Streamed" >        <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"      maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> <!-- other binding info here, such as security --> </binding> Max possible size: MaxReceivedMessageSize to 2147483647 (i.e. Int32.MaxValue), which is 2GB For our case, as we are using WsHttpBinding. <wsHttpBinding>         <binding name="wsHttpBindingSettings" maxReceivedMessageSize="2147483647">           <readerQuotas maxDepth="2147483647" maxStringContentLength

biztalk schema remove ns0 prefix

We can remove ns0 prefix simply by set the schema elements property or both elements and attributes properties to be qualified. To do that follow my steps: 1-       Open your schema 2-       Right Click <Schema> and select properties 3-       Use schema property editior and Set [Element FromDefult] to Unqualified , and then set [Attribute FromDefault] to Unqualified if you are using attributes in your schema. After applying the steps above, both XML instances below will be valid: Instance 1 (with ns0) < ns0:Root xmlns:ns0 = " http://RandomBizTalkProject.Schema1 " >   < Field1 > Field1_0 </ Field1 >   < Field2 > Field2_0 </ Field2 > </ ns0:Root > Instance 2 (without ns0) < Root xmlns = " http://RandomBizTalkProject.Schema1 " >   < Field1 > Field1_0 </ Field1 >   < Field2 > Field2_0 </ Field2 > </ Root >

Object Oriented Programming Concepts

OOP Basics Visual Basic was Object-Based, Visual Basic .NET is Object-Oriented , which means that it's a true Object-Oriented Programming Language . Visual Basic .NET supports all the key OOP features like Polymorphism , Inheritance , Abstraction and Encapsulation. It's worth having a brief overview of OOP before starting OOP with VB. Why Object Oriented approach? A major factor in the invention of Object-Oriented approach is to remove some of the flaws encountered with the procedural approach. In OOP, data is treated as a critical element and does not allow it to flow freely. It bounds data closely to the functions that operate on it and protects it from accidental modification from outside functions. OOP allows decomposition of a problem into a number of entities called objects and then builds data and functions around these objects. A major advantage of OOP is code reusability. Some important features of Object Oriented programming are as follows: Emphasis on