User Profile
Collapse
-
remote transactional receive
Is there any method to receive a message from a transactional queue in msmq 3.0? I am able to peek it(in workgroup mode) but not to receive it. -
what the name specifies, static is Fixed. When we use this in a loop like
For i As Integer = 0 To 4
Static p As Integer = 0
p = p + 1
Next
the value of p does not initialize again and again. After the loop the value of p will be 5. -
How to use enablenotification method in msmq using vb.net
I am using Microsoft Message Queue(MSMQ-3), and if I use enableNotificat ion method, I get a message "Access is Denied". I am using private queue on my local machine. So please any body help me that how can i use this method. I am getting the message in this line
Dim evnt As New MSMQ.MSMQEvent
vMyQSend.Enable Notification(ev nt)
No activity results to display
Show More
Leave a comment: