newb
newb

Reputation: 67

error handling strategies for biztalk project

i'm wonder if there is any good error handling strategies for biztalk project? and how many is there that i can choose between? example using ESB Toolkit, logging all the error to file or sending to mail.

all tips is thankful and it would be great if there is a lite describe about the strategy or link to a blogger or article about it.

Thanks in advance!

Upvotes: 0

Views: 373

Answers (1)

DTRT
DTRT

Reputation: 11040

Remember, there is a distinction between 'error handling' and 'notification'.

Error handling is implemented using the same patterns you would use in any .Net application. Scopes with Exception Blocks are analogous to Try...Catch in C#.

Notification is where you have a lot of options. But, before considering how, you need to define the what. Meaning what exactly do the users or administrators need to know? Figure that out, then choose the tools that let you implement to that requirement.

In order of complexity:

  • Windows Event Log
  • Failed Message Routing
  • BizTalk 360
  • Custom notification such as e-mail
  • Microsoft System Center with the BizTalk Management Pack
  • ESB Toolkit Portal
  • SharePoint with custom Message Repair and Resubmit

Upvotes: 3

Related Questions