1

我创建了一个通过托管 Windows 服务部署的 wcf 服务。onstart() 的作用是为 wcf 服务创建并打开一个 tcp 主机。

在 Windows 7 中一切正常,但是当我尝试在 Windows Server 2008 R2 中安装该服务时,该服务启动然后停止,并出现有时无事可做时服务停止的错误。它在网络服务帐户下运行。

我在 Windows 日志中找不到任何有用的东西。

我尝试安装一个 dubug 版本并调用 debugger.launch() 但它不起作用。我不能使用 remode 调试,因为该进程没有保持打开足够长的时间让我附加到它。我真的不知道该怎么办。这是我的代码:

    protected override void OnStart(string[] args)
    {
        System.Diagnostics.Debugger.Launch();

        try
        {

            //if (!System.Diagnostics.EventLog.SourceExists("i2s CU Service (eng)"))
            //{
            //    System.Diagnostics.EventLog.CreateEventSource("i2s CU Service", "Application");
            //}
            System.Diagnostics.EventLog.CreateEventSource("i2s CU Service", "Application");
        }
        catch (Exception)
        {
            //throw;
        }
        eventLog1.Source = "i2s CU Service";
        eventLog1.Log = "Application";

        if (serviceHost != null)
        {
            serviceHost.Close();
        }

        System.Configuration.AppSettingsReader reader = new System.Configuration.AppSettingsReader();
        Uri tcpUri = null;
        try
        {
            tcpUri = new Uri((string)reader.GetValue("Uri", typeof(string))); //net.tcp://localhost:8008/i2sServer

            serviceHost = new ServiceHost(typeof(ConcurrentUsers), tcpUri);

            // Create a binding that uses TCP and set the security mode to none.
            NetTcpBinding b = new NetTcpBinding();
            b.Security.Mode = SecurityMode.None;

            // Add an endpoint to the service.
            serviceHost.AddServiceEndpoint(typeof(IConcurrentUsers), b, "");

            // Open the ServiceHostBase to create listeners and start 
            // listening for messages.
            serviceHost.Open();
        }
        catch (Exception ex)
        {
            eventLog1.WriteEntry(ex.Message, EventLogEntryType.Error);
        }


        if (serviceHost.State == CommunicationState.Opened)
        {
            eventLog1.WriteEntry("Service started.", EventLogEntryType.Information);
        }
    }

    protected override void OnStop()
    {
        if (serviceHost != null)
        {
            serviceHost.Close();
            serviceHost = null;
        }
        eventLog1.WriteEntry("Service stopped.", EventLogEntryType.Information);
    }

这段代码在 Windows 7 中运行良好,但我无法让它在 win 2008 R2 服务器上运行。

提前致谢

4

1 回答 1

0

将您的应用程序重构为控制台应用程序,然后在所需的环境中运行它以便能够轻松调试它。

我敢肯定,一旦您在分配给 Windows 服务的同一用户帐户下运行控制台副本,问题就会显现出来

于 2012-03-07T18:35:42.967 回答