我正在我的开发盒上运行web服务,我需要在主机(即开发盒)上运行的虚拟机中测试该webservice。开发框上的web服务正在运行:
http://localhost:8100/ws_name.asmx
。
从虚拟机中我没有成功尝试过:
http://host_machine_ip/ws_name.asmx
http://host_machine_ip:8100/ws_name.asmx
//host_machine_ip/ws_name.asmx
//host_machine_ip:8100/ws_name.asmx
是否可以从我的VM测试此Web服务?
答案 0 :(得分:2)
如果您在Visual Studio的内置Web服务器中运行此服务,请记住此服务器不接受远程连接。所以你需要在IIS中托管它。