MSMQ Connection
Declares a Microsoft Message Queuing (MSMQ) connection that targets a private queue named 'MyMessageQ' on the local machine. The 'Path' value follows the standard MSMQ format ('machine\private$\queue' or 'machine\queue' for public queues). Use this connection from SSIS Message Queue tasks to send or receive messages as part of a control flow.
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Connections>
<MsmqConnection Name="MsmqConnection" Path=".\private$\MyMessageQ" />
</Connections>
</Biml>