An existing BizTalk Server 2010 messaging solution for processing orders has a send port group that contains two send ports. Send Port A is for Supplier A and Send Port B is for Supplier B. Each supplier receives only one copy of each order message. The order schema has a promoted property named OrderAmount that contains the total amount of the order. The send port group subscribes to all messages where a promoted property OrderAmount exists. The send ports do not have a filter defined. Messages with an order amount less than or equal to 1000 must be sent to Supplier A. Messages with an order amount greater than 1000 must be sent to Supplier B. Only a single message can be sent to either Supplier A or Supplier B. You need to modify the solution to route each order message to either Supplier A or Supplier B. What should you do?
A.
Delete the existing filter condition on the send port group. Add a filter condition on the send port group to subscribe for messages where OrderAmount is <= 1000. Add a filter OR condition on the send port group to subscribe for messages where OrderAmount is > 1000.
B.
Keep the existing filter condition on the send port group. Add a filter condition on the send port group to subscribe for messages where OrderAmount is <= 1000. Add a filter OR condition on the send port group to subscribe for messages where OrderAmount is > than 1000.
C.
Set a filter on Send Port A to subscribe for messages where OrderAmount is <= 1000. Set a filter on Send Port B to subscribe for messages where OrderAmount is > 1000. Stop and start the send port group.
D.
Set a filter on Send Port A to subscribe for messages where OrderAmount is <= 1000. Set a filter on Send Port B to subscribe for messages where OrderAmount is > 1000. Delete the send port group.