WEB API 2,Selfhost,除了 "localhost" 之外的所有内容都被拒绝访问
WEB API 2, Selfhost, Access is denied for everything but "localhost"
在 WEB API 2 OWIN 自托管项目中,我收到 "Access is denied" 异常抛出,除了 localhost in:
string baseUrl = http://localhost:2500;
WebApp.Start<Startup>(baseUrl);
如果我使用 127.0.0.1 或机器的实际 IP 地址,我会收到此异常。没有人在他们关于自托管网络的博客中提到过这个问题 api 2 owin based.
这里有什么问题,我该如何解决?
我找到了这个 Self hosted OWIN and urlacl 但我得到了同样的异常抛出。
这对我有用
What URL does OWIN understand for ipv6 self-hosting?
WebApp.Start<Startup>("http://+:43666");
我还是觉得应该在WEB上提一下和讨论一下API 2个OWIN教程!
在 WEB API 2 OWIN 自托管项目中,我收到 "Access is denied" 异常抛出,除了 localhost in:
string baseUrl = http://localhost:2500;
WebApp.Start<Startup>(baseUrl);
如果我使用 127.0.0.1 或机器的实际 IP 地址,我会收到此异常。没有人在他们关于自托管网络的博客中提到过这个问题 api 2 owin based.
这里有什么问题,我该如何解决?
我找到了这个 Self hosted OWIN and urlacl 但我得到了同样的异常抛出。
这对我有用
What URL does OWIN understand for ipv6 self-hosting?
WebApp.Start<Startup>("http://+:43666");
我还是觉得应该在WEB上提一下和讨论一下API 2个OWIN教程!