如何使我的自托管WCF服务不尝试保留localhost以外的URL?

问题描述 投票:0回答:1

我想在.NET 3.5桌面应用程序中嵌入REST API。在该框架版本上,只有一个选项:自托管WCF。

但我似乎无法让它只在localhost上听。

启动时,应用程序尝试为http://+:8000进行网址预订,但是由于我没有使用管理员权限运行它,因此无法使用System.ServiceModel.AddressAccessDeniedException

我希望它只保留http://localhost:8000,从而避免需要管理员权限。

使用HostNameComparisonMode.Exact似乎没有任何改变。

这是我尝试过的:

using Myservice;
using System;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.ServiceModel.Web;

namespace consolehost1
{
    class Program
    {
        static void Main(string[] args)
        {
            //Use exact hostname comparison mode
            WebHttpBinding binding = new WebHttpBinding();
            binding.HostNameComparisonMode = HostNameComparisonMode.Exact;

            WebServiceHost host = new WebServiceHost(typeof(Service1), new Uri("http://localhost:8000/"));
            ServiceEndpoint endpoint = host.AddServiceEndpoint(typeof(IService1), binding, "some-endpoint");

            //The host still tries to get a reservation for http://+:8000 and not just http://localhost:8000
            host.Open();
        }
    }
}

我能做什么 ?

c# wcf
1个回答
-1
投票

以下命令可以解决问题吗?

  • 对于Windows Vista,Windows7

netsh http add urlacl url = http://+:8000/MyUri user = DOMAIN \ user

  • 对于Windows XP,Server 2003。

httpcfg set urlacl / u {http://URL:Port/ | https://URL:Port/} /一个ACL

https://docs.microsoft.com/en-us/dotnet/framework/wcf/feature-details/configuring-http-and-https https://docs.microsoft.com/en-us/windows/desktop/http/add-urlacl 如果问题仍然存在,请随时告诉我。

© www.soinside.com 2019 - 2024. All rights reserved.