3

Is there anyway for a BizTalk receive port to initialize an orchestration, pulling in FailedMessages that could otherwise be routed to a send port in the console using filtering on ErrorType exists and the origional port name where it occurred? Or is this only possible on send ports?

skaffman
  • 398,947
  • 96
  • 818
  • 769
mirezus
  • 13,892
  • 11
  • 37
  • 42

1 Answers1

2

This is not possible with receive ports. It is, however, possible by direct binding the Orchestration's receive port to the message box and setting the appropriate filters. In a nut shell, set up the orchestartion to be callable with a direct bound port attached to the activating receive shape. Set the filters on the receive shape to make the message box subscription be what you'd like.

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

Christian Loris
  • 4,159
  • 1
  • 20
  • 29