hi,
i am sending messages over internet using MSMQ but on my outgoing queue i face problem of " Waiting to Connect".
how to solve this problem. here is my code :-
MessageQueue MyMSGQ;
Message MyMsg; MyMSGQ = new MessageQueue(@"FormatName:DIRECT=TCP:xxx.xxx.xx.xx\private$\myqueue");
MyMsg = new Message("hello");
MyMSGQ.Send(MyMsg);
==========================
Thanks
Loading

Subhendu DePosted Dec 8, 2010, 4:06 AM
Do one think.. Try asynchrounous mode to connect to destination and send the messages.