不能使用多个选项OWIN

时间:2015-02-15 15:36:03

标签: c# asp.net-web-api owin

我对使用OWIN托管的服务器有一个小问题。我试图让它可以访问本地网络,这意味着我必须添加一些额外的选项:

// Start OWIN host 
        StartOptions options = new StartOptions();
        options.Urls.Add("http://localhost:4004");
        //options.Urls.Add("http://127.0.0.1:4004");
        //options.Urls.Add(string.Format("http://{0}:4004", Environment.MachineName));
        using (WebApp.Start<Startup>(options))
        {

            // Create HttpCient and make a request to api/values 
            HttpClient client = new HttpClient();
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/text"));

        }

现在的问题是,如果我取消注释第二行:

options.Urls.Add("http://127.0.0.1:4004");

我会收到错误:

  

未处理的类型异常   &#39; System.Reflection.TargetInvocationException&#39;发生在mscorlib.dll

     

附加信息:目标是抛出异常   调用

有人可以帮帮我吗?奇怪的是我只能使用localhost,而不是我的ip。

1 个答案:

答案 0 :(得分:1)

问题在于没有管理员权限。我得到一个拒绝内部异常的访问。通过在清单应用程序文件中使用它,我已经使错误消失了:)

  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
  <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
    <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
  </requestedPrivileges>
</security>