Reputation: 67
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
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:
Upvotes: 3