SQL Server に書き込む前に、MSMQ を使用してメッセージを保存する単純なコンソール アプリがあります。私は MQ の初心者なので、ばかげたエラーがある場合はご容赦ください。基本的に、エラーはスローされず、コードはハンドラーに入らずにまっすぐ実行されます...ヘルプ/ガイダンスは非常に高く評価されています...次のようなコード、ありがとう:-
public void MSMQ_GetMessage(string _MQ_Path)
{
//set the correct message queue
MessageQueue _msgQ = new MessageQueue(_MQ_Path, QueueAccessMode.ReceiveAndAdmin);
//set the format of the message queue
// _msgQ.Formatter = new XmlMessageFormatter(new Type[] { typeof(_TwitterStreamFeed) });
_msgQ.ReceiveCompleted += new ReceiveCompletedEventHandler(_msgQ_RecieveCompleted);
_msgQ.Formatter = new BinaryMessageFormatter();
_msgQ.BeginReceive();
}
//method to process message
public void _msgQ_RecieveCompleted(object sender, ReceiveCompletedEventArgs e)
{
//queue that have received a message
MessageQueue _mq = (MessageQueue)sender;
try
{
//get the messge off the queue
Message _mqmsg = _mq.EndReceive(e.AsyncResult);
//set the values back into a formatted struct
_TwitterStreamFeed _ts = (_TwitterStreamFeed)_mqmsg.Body;
//now process your SQL....
_azuresql.writeMessageToStorage(_ts);
}
catch
{
}
//refresh queue just in case any changes occurred (optional)
_mq.Refresh();
//tell MessageQueue to receive next message when it arrives
_mq.BeginReceive();
}