Sent port order sends a running instance to BizTalk

I have an MSMQ send port in BizTalk that is configured to send messages using ordered delivery. When a port sends a message packet, it leaves the port instance as the active executable instance.

I still get the correct files in the correct order, but I need to manually end the use of the used port instance. If I send new files, it looks like an already running instance (which was left earlier) is used, and I never receive more than one port instance per send port.

However, this will be a problem in terms of service, and I do not understand why this is happening. Ideas?

I am using BizTalk 2006 R2.

+3
source share
2 answers

It turns out that this is part of the implementation of the ordered delivery. The instance will remain active until it is completed.

+3
source

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


All Articles