
06-27-2012, 05:40 AM
|
|
Junior Contributor
|
|
Join Date: Jun 2005
Posts: 212
|
|
Message Queuing, how to connect to ip address
|
Dear all,
Busy with MSMQ.
Checking a certain message queu is existing, we are using the next code:
Imports System.Messaging
Module Module1
Sub Main()
Dim pQueue As String = ".\Private$\test"
If Not MessageQueue.Exists(pQueue) Then
MsgBox("Queue " & pQueue & " does not exist.")
Exit Sub
End If
End Sub
End Module
Knows someone the pQueue to an other machine, we only knowing the ip address.
Nice regards,
Michelle.
|
|