Hello
I hope someone can tell me what I’m doing wrong.
I’m trying to send a message from Biztalk server 2009 to Navision using Message Queue or MSMQ Adapter
Navision requires a specific value(Navision MSMQ-BA) in the column label in order to react when the message is available in the message queue from Biztalk server.
My problem is that I the orchestration in Biztalk server does assign the value(Navision MSMQ-BA) to the MSMQ label even though I’m setting the value in my orchestration.
As you may see below I’m trying assigning the value using MSMQT.Label in the assign shape just before I’m passing the message to the send port. But I’m my message queue label is still empty.
OutMsg(MSMQT.Label) = “Navision MSMQ-BA”;
I have also tried
OutMsg(MSMQT.Label) = System.Convert.ToString(“Navision MSMQ-BA”);
To see if this should help. But it didn’t.
Do anyone have a suggestion or a solution where this actually works I could take a look at?