我有一个ASP.NET Web应用程序,它使用Web服务进行一些计算。我有两个问题,通过IIS在我的机器上本地托管它。 首先,我是否需要托管Web应用程序和Web服务这两个项目?我试图托管网络应用程序,但当我尝试运行它时无法连接到Web服务。 其次,我如何才能让公司网络内的人员可以访问此Web应用程序?
谢谢!
答案 0 :(得分:1)
步骤:
1.) Create web service.
2.) Paste your web service bin ==> Debug Content in IIS if already set it up(IIS).
3.) Set Framework in application pool(IIS).
4.) (Click Web Service Site Created(IIS)) == >Set up Browsing Directory to enable.
5.) select .asmx file(right click) ==> Browse.
6.) Web Service is already running.
7.) Get the Link of your Web Service copy and paste into (9 step).
8.) create vb.net/c# project.
9.) Right Click references tab of your vb.net/c# Project ==> Add Service Reference paste web service url in address textbox == > Go.
10.) Create service reference name ==> ok.
11.) you have your web service now at your project.