2

我正在开发在 IIS 上运行的 WCF 服务,我需要为 MSMQ 中的每个私有队列计算消息 i =。最快的方法似乎是powershell方法。

基准在这里:

http://www.codeproject.com/Articles/346575/Message-Queue-Counting-Comparisions

在 Visual Studio 2012 上调试时,它运行良好,但在我的本地 IIS 7.5 服务器上部署时,它返回 0。

这是我正在使用的方法:

private int GetPowerShellCount()
{
    return GetPowerShellCount(".\\private$\pingpong", Environment.MachineName, "", "");
}

private  int GetPowerShellCount(string queuePath, string machine,string username, string password)
{
    var path = string.Format(@"\\{0}\root\CIMv2", machine);
    ManagementScope scope;
    if (string.IsNullOrEmpty(username))
    {
            scope = new ManagementScope(path);
    }
    else
    {
        var options = new ConnectionOptions {Username = username, Password = password};
        scope = new ManagementScope(path, options);
    }
    scope.Connect();
    if (queuePath.StartsWith(".\\")) queuePath=queuePath.Replace(".\\",string.Format("{0}\\",machine));

    string queryString = String.Format("SELECT * FROM Win32_PerfFormattedData_msmq_MSMQQueue");
    var query = new ObjectQuery(queryString);
    var searcher = new ManagementObjectSearcher(scope, query);
    IEnumerable<int> messageCountEnumerable =
        from ManagementObject queue in searcher.Get()
        select (int)(UInt64)queue.GetPropertyValue("MessagesInQueue");
    //IEnumerable<string> messageCountEnumerable =
    //  from ManagementObject queue in searcher.Get()
    //  select (string)queue.GetPropertyValue("Name");
    var x = messageCountEnumerable.First();
    return x;
}

请注意,我没有使用用户/密码参数,所以它都是本地的(WCF 服务和 MSMQ 在同一台机器上)。

为什么部署到 IIS 时返回 0?你觉得我应该尝试什么?

4

1 回答 1

0

您的问题可能与 IIS 特定行为有关。

看看 Tom Hollander 的博客:MSMQ、WCF 和 IIS:让它们玩得更好(第 1 部分)

一般来说,消息队列可以随心所欲地调用。但是,当您在 IIS 7 WAS 中托管启用 MSMQ 的服务时,队列名称必须与服务的 .svc 文件的 URI 匹配。在此示例中,我们将在名为 MsmqService 的应用程序中托管服务,并使用名为MsmqService.svc 的 .svc 文件,因此队列必须名为MsmqService /MsmqService.svc

于 2012-11-29T15:43:45.723 回答