如何为WCF Windows服务设置权限?

时间:2011-09-11 19:11:41

标签: c# wcf windows-services permissions

我有一个公开WCF服务的Windows服务。

我还有一个与WCF服务对话并发送命令并接收数据的应用程序。

当我从Visual Studio运行应用程序时,所有这一切都正常。

但是,当我安装应用程序并运行它时,应用程序无法与服务通信。 应用程序运行的批处理文件也不能停止并启动服务。

我尝试使用netsh来“保留”URI,但我真的不知道我在做什么: - )

你能指出我正确的方向吗?

Windows Server代码WCF服务代码(删节):

// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "WCF_Service" in both code and config file together.
[ServiceContract]
public class InternetGauge_IO
{

    [OperationContract]
    public void Pause()
    {
        RunningState.paused = true;
    }

    [OperationContract]
    public void Continue()
    {
        RunningState.paused = false;
    }

    [OperationContract]
    public bool GetRunningState()
    {
        return RunningState.paused;
    }
    ....

Windows Server代码WCF创建端点代码:

        private void InitializeConsoleComms()
    {
        try
        {
            //Prepare comms with the Console application
            Type serviceType = typeof(InternetGauge_IO);
            host = new ServiceHost(serviceType, new Uri[] { new Uri("http://localhost:8080/") });

            // Add behavior for our MEX endpoint
            ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
            behavior.HttpGetEnabled = true;
            host.Description.Behaviors.Add(behavior);

            // Create basicHttpBinding endpoint at http://localhost:8080/RJB.InternetGauge/
            host.AddServiceEndpoint(serviceType, new BasicHttpBinding(), "RJB.InternetGauge");

            // Add MEX endpoint at http://localhost:8080/MEX/
            host.AddServiceEndpoint(typeof(IMetadataExchange), new BasicHttpBinding(), "MEX");

            host.Open();
            logger.LogEvent("Console comms ready", "Internet Gauge", 4, 1);
        }
        catch (Exception e)
        {
            logger.LogEvent("Failed to open Console comms", "Internet Gauge", 1, 1);
            logger.LogEvent("Exception : " + e.InnerException + " Stack Trace: " + e.StackTrace + " Message: " + e.Message, "RJB.InternetGauge.WindowsService.Main", 1, 1);
        }
    }

应用程序只使用生成的代理和方法,例如

private bool GetRunningState()
    {
        try 
        {           
            InternetGauge_IOClient client = new InternetGauge_IOClient();
            isRunning = true;
            return(client.GetRunningState());
        }
        catch (Exception)
        {
            trayIcon.Text = "Internet Gauge Windows Service does not appear to be running.";
            trayIcon.Icon = RJB.InternetGauge.Console.Properties.Resources.ServiceStopped;
            isPaused = true;
            isRunning = false;

            return isPaused;
        }
    }

我试过的netsh命令

netsh http add urlacl url=http://+:8080/InternetGauge_IO user=PC-01\richard

有什么想法吗?

由于 理查德

1 个答案:

答案 0 :(得分:1)

因为我是个傻瓜。

在安装程序中没有复制app.config。

现在一切正常。