在Mac上为.NET后端运行VM,我有以下设置:
Parallels 8(共享网络),Win 8,IIS Express 8(我认为不是以管理员身份运行),Visual Studio 2012 Epress
通过提升的命令行ACL:
netsh http add urlacl url=http://10.211.55.3:29588/ user=everyone
对ApplicationHost.config
<bindings>
<binding protocol="http" bindingInformation="*:49288:localhost" />
<binding protocol="http" bindingInformation="*:49288:10.211.55.3" />
</bindings>
关于此主题的常用教程使用win8主机名,这在我的案例中不起作用。我必须使用直接IP地址。另一件不寻常的事情是我必须将localhost留在绑定中,否则Visual Studio无法启动IIS Express(错误)。
以上作品除外,后端在一分钟左右后无响应。就像服务器进入睡眠状态一样。在浏览器刷新(Mac端)我得到超时,然后请求再次通过。在Win8方面,后端始终具有代表性。
有人知道我做错了吗?
答案 0 :(得分:0)
VS 2012更新3似乎解决了这个问题。