Re: What is a failed message in biztalk 2006

Home Page Forums BizTalk 2004 – BizTalk 2010 What is a failed message in biztalk 2006 Re: What is a failed message in biztalk 2006

#20478

It looks like you are using the XML Receive/Send pipelines.  These pipelines have the property “Allow unrecognized messages”, which is false by default.  If you were to set this property to true, then BizTalk would receive your messages, and you could use failed message routing.  When you enable failed message routing on a receive port, BizTalk will attach some specal context properties to the message when an exception occurs.  Then you could create another process, an SMTP send port for example, to filter on these failed messages and deliver them to someone who cares.  Example filter:  ErrorReport.FailureCode Exists.  Keep in mind that failed message routing only works messaging exceptions, not orchestration exceptions.