我即将编写一个
JSON-web-service(VS Express 2012 – ASP.NET WEB API),现在我想通过尝试从我的
Android-app获取数据来测试它.所以我尝试通过这样做使我的服务可用于本地网络:
– >在applicationhost.config中从localhost更改为192.168.1.52
<site name="MyFirstWebApi" id="5"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="c:\projects\MyFirstWebApi" /> </application> <bindings> <binding protocol="http" bindingInformation="*:61802:192.168.1.52" /> </bindings> </site>
– >并且还更改了项目属性 – >网络 – > “使用本地IIS-Webserver” – > project-url to http://192.168.1.52:61802/
但是,当我现在尝试启动该服务时,它会给我一个错误消息框:
The IIS-Express-webserver could not be started
(Translated from german)
任何人都知道如何解决这个问题或如何正确设置?
解决方法
IIS Express默认不允许“远程”连接…这篇文章告诉你该做什么:
IIS Express enable external request
完成后,您应该可以从网络中的任何其他计算机进行连接.
此外,请确保打开防火墙中的端口.
如果这不起作用,我会使用您的本地IIS创建一个站点并以这种方式测试您的服务.
希望能帮助到你,丹尼尔.