Using multicast queues in System.Messaging and MSMQ 3.0

末鹿安然 提交于 2019-11-30 13:57:08

Could you create the MSMQDestination class and assigned multicast format into it, set the message label and perform sending task using MSMQMessage class

Dim dest As New MSMQDestination
dest.FormatName = "MULTICAST=234.1.1.1:8001"

Dim message As MSMQMessage
message.label ="Test Message"
message.Send DestinationQueue:=dest

FINAL WORD UPDATE I'm glad you relief now. for your issue in other machine, it is a security enhancement to prevent denial of service attack. default msmq queue permission changed in msmq 4.0

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!