我正在开发在 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?你觉得我应该尝试什么?