|
Home > Archive > BizTalk Server Orchestration > December 2004 > How to put a message in message queue from orchestration
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to put a message in message queue from orchestration
|
|
| CyberLotus 2004-12-30, 5:52 pm |
| Hi,
In my orchestration, I'm receiving an xml file from a folder. Then after the
mapping I want to put that file in a private message queue.
I tried using MSMQT transport protocol. I tried with the following pathname:
"msmq://DIRECT=OS:.\Private$\TestMethodCall" (for early binding) or
"DIRECT=OS:.\Private$\TestMethodCall" (for later binding).
But it's not sending messages to the queue.
Am I doing correct or am having a wrong concept about MSMQT?
Please help me.
TIA
-Lotus
| |
| abdulsait 2004-12-30, 5:52 pm |
| Remember, you cannot have MSMQ and MSMQT on the same machine. You can send
messages to a remote MSMQ private queue using the following:
DIRECT=TCP:172.25.x.x\Private$\MyPrivateQueue
Make sure you give the BTS Host and Isolated Host users permissions to write
messages to your private queue.
Hope this helps!
"CyberLotus" wrote:
> Hi,
>
> In my orchestration, I'm receiving an xml file from a folder. Then after the
> mapping I want to put that file in a private message queue.
> I tried using MSMQT transport protocol. I tried with the following pathname:
> "msmq://DIRECT=OS:.\Private$\TestMethodCall" (for early binding) or
> "DIRECT=OS:.\Private$\TestMethodCall" (for later binding).
>
> But it's not sending messages to the queue.
> Am I doing correct or am having a wrong concept about MSMQT?
>
> Please help me.
>
> TIA
> -Lotus
>
>
|
|
|
|
|