gpt4 book ai didi

c# - 不能使用多个选项 OWIN

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:18 26 4
gpt4 key购买 nike

关于使用 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");

我会得到一个错误:

An unhandled exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll

Additional information: Exception has been thrown by the target of an invocation.

有人能帮帮我吗?很奇怪,我只能使用本地主机,而不能使用我的 ip。

最佳答案

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

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

关于c# - 不能使用多个选项 OWIN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28527762/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com