这是一个直截了当的问题:
我的应用程序在作为标准程序运行时表现正常。现在,当我将其作为Windows服务运行时,它不处理其私有队列中的消息(使用MSMQ)。
我尝试将该服务作为我的用户帐户和本地服务运行。在这两种情况下,队列只填充了消息,没有一个被处理。
请注意,Windows服务似乎运行正常:它关联的Wcf服务已打开并正在收听。
为了确保它不是一个权限问题,我授予了我能想到的每个组/用户的完全访问权限。这是处理队列创建和主机初始化的代码。请注意,在此尝试中,我将用户的本地化命名更改为英语版本。另请注意,我尝试在所有可能的帐户下安装该服务:我自己以admin,LocalSystem,LocalService和NetworkService运行。
namespace MachineCommunication.ZeissCMMAdapter
{
partial class ZeissService : ServiceBase
{
public ZeissService()
{
InitializeComponent();
}
ServiceHost _host = null;
protected override void OnStart(string[] args)
{
Trace.WriteLine("Starting ZeissAdapter Service...");
string adapterQueueName = ConfigurationManager.AppSettings["adapterQueueName"];
// Create the transacted MSMQ queue if necessary.
MessageQueue adapterQueue;
if (!MessageQueue.Exists(adapterQueueName))
{
Trace.WriteLine("Creating Queue: " + adapterQueueName);
adapterQueue = MessageQueue.Create(adapterQueueName, true);
adapterQueue.SetPermissions(@"NT AUTHORITY\System", MessageQueueAccessRights.FullControl);
adapterQueue.SetPermissions(@"ANONYMOUS LOGON", MessageQueueAccessRights.FullControl);
adapterQueue.SetPermissions(@"Everyone", MessageQueueAccessRights.FullControl);
adapterQueue.SetPermissions(@"my_user", MessageQueueAccessRights.FullControl);
}
else
{
Trace.WriteLine("Queue already exists: " + adapterQueueName);
}
string machineQueueName = ConfigurationManager.AppSettings["machineQueueName"];
MessageQueue machineQueue;
// Create the transacted MSMQ queue if necessary.
if (!MessageQueue.Exists(machineQueueName))
{
Trace.WriteLine("Creating Queue: " + machineQueueName);
machineQueue = MessageQueue.Create(machineQueueName, true);
machineQueue.SetPermissions(@"NT AUTHORITY\System", MessageQueueAccessRights.FullControl);
machineQueue.SetPermissions(@"ANONYMOUS LOGON", MessageQueueAccessRights.FullControl);
machineQueue.SetPermissions(@"Everyone", MessageQueueAccessRights.FullControl);
machineQueue.SetPermissions(@"my_user", MessageQueueAccessRights.FullControl);
}
using (_host = new ServiceHost(typeof(ZeissAdapterService)))
{
_host.Open();
Console.WriteLine("The service is ready");
Console.WriteLine("Press <Enter> to stop the service.");
Console.ReadLine();
}
}
protected override void OnStop()
{
try
{
Trace.WriteLine("Shutting down Class-A E-mail Service...");
if (_host != null && _host.State == CommunicationState.Opened)
{
_host.Close();
_host = null;
}
}
catch (Exception ex)
{
Trace.WriteLine("Something went wrong closing the ServiceHost : " + ex.Message);
throw;
}
}
}
}
以下是我的服务的完整app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
<!-- use appSetting to configure MSMQ queue name -->
<add key="adapterQueueName" value=".\private$\Zeiss/ZeissAdapterService"/>
<add key="machineQueueName" value=".\private$\Zeiss/ZeissMachineService"/>
</appSettings>
<system.serviceModel>
<services>
<service name="MachineCommunication.ZeissCMMAdapter.ZeissAdapterService" behaviorConfiguration="DefaultBehavior">
<!-- Define NetMsmqEndpoint -->
<host>
<baseAddresses>
<add baseAddress="http://localhost:12000/" />
</baseAddresses>
</host>
<endpoint address="net.msmq://localhost/private/Zeiss/ZeissAdapterService" binding="netMsmqBinding" bindingConfiguration="TransactedBinding" contract="MachineCommunication.Contracts.AdapterContracts.IAdapterService"/>
<endpoint address="net.msmq://localhost/private/Zeiss/ZeissMachineService" binding="netMsmqBinding" bindingConfiguration="TransactedBinding" contract="MachineCommunication.MachineTypeSpecificInfrastructure.ZeissInfrastructure.IZeissListener"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="DefaultBehavior">
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<netMsmqBinding>
<binding name="TransactedBinding" deadLetterQueue="System" useActiveDirectory ="False" useMsmqTracing="True">
<security mode="None">
<message clientCredentialType="None"/>
<transport msmqAuthenticationMode="None" msmqProtectionLevel="None" />
</security>
</binding>
</netMsmqBinding>
</bindings>
</system.serviceModel>
<system.diagnostics>
<trace autoflush="true" />
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="sdt"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData= "SdrConfigExample.e2e" />
</listeners>
</source>
</sources>
</system.diagnostics>
</configuration>
以下是一种重现问题的快速方法:在MSDN上分发的WCF代码示例中,有一个涉及客户端/服务器设置的双向MSMQ示例;我修改了此示例以将服务器安装为Windows服务。如果您运行服务器并启动客户端,则所有消息都应该停留在服务器的队列中而不进行进一步处理。以下是该示例的链接:
https://drive.google.com/file/d/0B5-APK5bfBpMUGU2cW5iaV9ybnM/edit?usp=sharing
答案 0 :(得分:0)
几个想法。
尝试允许服务以您的身份运行,但作为交互式用户运行。
配置文件是否在正确的文件夹中?当您运行Windows服务时,它会将appdomain的基本目录默认为%SYSDIR%(您可以在OnStart中覆盖)
除此之外,我建议添加一个跟踪器并记录实际发生的活动或使用调试器附加到进程。
如果您需要覆盖BaseDir。
System.IO.Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory)
答案 1 :(得分:0)
最有可能是由于权利。在网络服务或类似网络下运行的Windows服务无权访问MSMQ队列。您必须提供访问权限。
在开发计算机或测试服务器上尝试此操作,而不是在生产中。尝试将“Everyone”权限授予您正在与之交谈的队列,并在具有管理权限的用户下运行该服务。如果它开始处理消息,那么你就会知道这是一个权利问题。
然后缩小范围。删除越来越多的权限,看它是否仍然有效。
还尝试一些日志记录以查看服务是否正确启动。尝试加载配置设置并记录它们。尝试使用Sysinternals DebugView查看它们或将它们记录到文件中。如果服务正在记录到文件,并且您看到正在记录的正确配置项值,那么您将知道它不是问题。
我还看到人们认为他们应该访问queuename / service.svc队列。但这仅适用于IIS托管的WCF服务。
如果我是你,请发布整个配置。你没有提供很多信息,我也看不出配置是否有任何问题。
答案 2 :(得分:0)
真正的问题只是我试图阻止服务线程退出,使用console.readline - 在将应用程序作为服务运行时(显然可能)不适用。我的不好,我很遗憾首先提出这个问题。无论如何,谢谢所有的答案尝试。