If I want to read queue on another machine in the same domain, how do I specify 'queuepathname' parameter in the openqueue method?
I have tried IP/path, machine_name/path etc... no luck...
FYI... protocol is TCP
Thanks,
Tom
Printable View
If I want to read queue on another machine in the same domain, how do I specify 'queuepathname' parameter in the openqueue method?
I have tried IP/path, machine_name/path etc... no luck...
FYI... protocol is TCP
Thanks,
Tom
Just FYI...
When opening a queue on a remote machine, must use the FormatName property of the QueueInfo obj. ("Direct" spec)
Dim qinfo As New MSMQQueueInfo
'qinfo.FormatName = "DIRECT=TCP:" & QueuePath
Hope it helps someone.
Tom