Main menu:

 

February 2008
M T W T F S S
« Jan   Mar »
 123
45678910
11121314151617
18192021222324
2526272829  

Site search

Archives

Categories

Tags

Links:

Archive for February, 2008

How to Optimize Messaging Design

While I was looking for performance optimization in BizTalk Server, I stumbled upon the presentation from Lee Graber who is a Senior developer at Microsoft.Please find the points below.

Don’t make your schema nodes overly descriptive
Larger message schemas and larger message instances reduce performance
Don’t use an xml pipeline (w/ xml assembler) for the send port, [...]

Unable to open the BAS Infopath forms due to insufficient security privileges

When I tried to open the Trading Partner forms to create a trading partner, An error was being displayed.
The error was Info path cannot open the form due to insufficient security privileges .
Resolution: Make sure that you are member of BizTalk BAS User group, the same can be added as follows.
Click => Start => [...]

Difference between Typed and Untyped messages

A Typed message is one which has an associated schema with it, All the message which are associated with schemas are called strong typed messages.
An Untyped message is one which is of the type XmlDocument and doesn’t have any schema associated with it. You can declare a variable in the orchestration and set its data type [...]

Infopath with BizTalk

While the outlook is for the mail server, Info path is for BizTalk. The creation of xml files have very much been simplified by creating a form adding the fields , which corresponds to xml file. on click of submit the xml file will be created and put into the receive location where the BizTalk [...]

Message type in BizTalk Server schemas

Message type in schema is a combination of namespace and the root node name, if you have a namespace for the Purchase Order as http://PurchaseOrder and having a root element as Order, then the message type of the schema is http://PurchaseOrde#Order.
Remember, Each Schema should have a unique message type name, if two schema’s have the [...]

BizTalk Server Exception handling - continued

Hi,
The exception handling framework was implemented successfully in a demo. The idea is to create a task based framework where in before start of each task in a scope shape , you need to store into the database the details of the task started, and after completion of a task you need to store [...]

BizTalk Server Exception handling

Hello everyone,
I will be working on an exception handling project for BizTalk Server , where in we will be using Microsoft Practices Enterprise library for handling the exceptions, tracking ,logging and many more to say..
Keep an eye for updates..
Thanks!

BizTalk Server throwing Named Pipes error: 40 - Could not open a connection to SQL Server

I encountered the above error while I was testing the application on Stage, after development on DEV.
I spend around 2 days to diagnose the problem , there are tons of stuffs available online, tried all of them. The problem I tracked was a wierd one.
On the DEV machine the application was working fine as expected, [...]