Microsoft BizTalk actually used for

biztalk

I've been given the job of setting up a Microsoft BizTalk staging server for our developers to test some integration for a client.

The catch is, I have no idea what BizTalk is, what it does, or what it is used for. Everything I can read about it on the Microsoft website is all just marketing fluff as far as I can tell, with lots of big enterprisey words (sentences like "BizTalk enables your organization to seamlessly integrate disparate systems and connect business partners")

Can anyone shed some light on what BizTalk actually does? Our developers don't know either, only that they have to integrate with it!

Best Answer

Biztalk allows applications to talk to each other. It is used for sharing information or events between applications or systems that are needed to work together in a business process.

It provides a way of mapping inputs and outputs of different systems, for example when they use incompatible protocols or formats. I believe this is done in XML. It also provides collections of scripts or procedures, called orchestrations, that allow a set of actions to occur in target systems when triggered by something happening in another system.

It's an implementation of an enterprise service bus, which is a platform for building a service oriented architecture - if that helps...

Related Topic