Can a BizTalk receive port pull FailedMessageRoutings, such as a Send Port, with filtering?

Is there anyway a BizTalk receive port to initiate the orchestration by pulling FailedMessages, which otherwise could be redirected to the send port in the console using filtering on ErrorType and the original port name where it happened? Or is this only possible when sending ports?

+3
source share
1 answer

This is not possible for receive ports. However, this is possible by directly linking the orchestration receiving port to the message box and installing appropriate filters. In a nutshell, configure the orchestration to be challenged using the direct connected port attached to the activating reception form. Set filters on the admission form to make the subscription to the subscription the way you want.

More details: http://msdn.microsoft.com/en-us/library/aa949234(v=BTS.20).aspx

+2
source

Source: https://habr.com/ru/post/1744147/


All Articles