c# winform IBM mq消息队列监听代码
时间: 2023-07-29 17:07:55 浏览: 244
Simple-Discrete-Event-Simulation:使用c
以下是一个简单的 C# WinForm IBM MQ 消息队列监听代码示例:
```csharp
using IBM.WMQ;
using System;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace IBM_MQ_Listener
{
public partial class Form1 : Form
{
private MQQueueManager queueManager;
private MQQueue queue;
private MQMessage message;
private MQGetMessageOptions options;
public Form1()
{
InitializeComponent();
}
private async void btnStart_Click(object sender, EventArgs e)
{
try
{
// 设置 IBM MQ 连接信息
var properties = new Hashtable();
properties.Add(MQC.TRANSPORT_PROPERTY, MQC.TRANSPORT_MQSERIES_MANAGED);
properties.Add(MQC.HOST_NAME_PROPERTY, "your.mq.server.ip");
properties.Add(MQC.CHANNEL_PROPERTY, "your.mq.channel");
properties.Add(MQC.PORT_PROPERTY, your.mq.server.port);
properties.Add(MQC.USER_ID_PROPERTY, "your.mq.user");
properties.Add(MQC.PASSWORD_PROPERTY, "your.mq.password");
// 连接 IBM MQ 队列管理器
queueManager = new MQQueueManager("your.mq.queue.manager.name", properties);
// 打开监听的队列
queue = queueManager.AccessQueue("your.mq.queue.name", MQC.MQOO_INPUT_AS_Q_DEF + MQC.MQOO_FAIL_IF_QUIESCING);
// 初始化消息和获取选项
message = new MQMessage();
options = new MQGetMessageOptions();
// 启动监听循环
await Task.Run(() =>
{
while (true)
{
try
{
queue.Get(message, options);
// 处理接收到的消息
string msgText = message.ReadString(message.MessageLength);
Invoke(new Action(() => {
// 在 UI 线程中更新 UI
txtReceivedMsg.AppendText(msgText + Environment.NewLine);
}));
}
catch (MQException ex)
{
if (ex.ReasonCode == MQC.MQRC_NO_MSG_AVAILABLE)
{
// 没有消息可用,继续循环
continue;
}
else
{
// 其他错误,退出循环
throw ex;
}
}
}
});
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnStop_Click(object sender, EventArgs e)
{
try
{
// 关闭队列
if (queue != null)
{
queue.Close();
}
// 断开队列管理器连接
if (queueManager != null)
{
queueManager.Disconnect();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
```
在这个示例中,我们使用 IBM.WMQ 库来连接 IBM MQ 队列管理器,打开监听的队列,接收并处理消息。需要注意的是,IBM.WMQ 库需要安装 IBM MQ 客户端才能正常使用。
阅读全文