无法通过webapp在MSMQ中显示队列的内容

无法通过webapp在MSMQ中显示队列的内容

本文介绍了无法通过webapp在MSMQ中显示队列的内容。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello,
Below is the code I have written to display the contents of an MSMQ queue. It works fine in case of winforms. But When i create a web application, Though the queue has some data, Nothing is displayed.
Can u help me..?
Thanks in advance.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Messaging;
using System.Text;
using System.Windows.Forms;

namespace MSMQWebService
{
    /// <summary>
    /// Summary description for Service1
    /// </summary>

    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]

    public class Service1 : System.Web.Services.WebService
    {
        string QueueName = ".\\Private$\\q1";



        [WebMethod]
        public string DisplayMessage()
        {
            bool NoMessage = true;
           MessageQueue Q1 = new MessageQueue(QueueName);
            System.Messaging.Message[] AllMessages = Q1.GetAllMessages();
            foreach (System.Messaging.Message theMessage in AllMessages)
            {
                NoMessage = false;
                byte[] data = new byte[1024];
                theMessage.BodyStream.Read(data, 0, 1024);
                string strMessage = ASCIIEncoding.ASCII.GetString(data);
                Console.WriteLine(strMessage);
           }

           if (NoMessage)
            {
                MessageBox.Show("Message Queue is Empty");

            }
           return "Success";
        }


    }

推荐答案




这篇关于无法通过webapp在MSMQ中显示队列的内容。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 06:05