在IIS 7上部署Webservice Asmx

时间:2017-10-12 11:30:57

标签: c# asp.net web-services iis

我在IIS7上阅读了许多文章来部署Web服务。所以我所做的是:

  1. 转到IIS管理器
  2. 添加虚拟目录
  3. 我获得的物理路径
  4. enter image description here

    1. 点击添加
    2. 当我浏览虚拟目录时,它会给出错误500
    3. enter image description here

      1. 然后我转到应用程序池并选择.NET v4.5并转到高级设置并将Process Model下的Identity更改为ApplicationPoolIdentity的当前帐户。
      2. 我使用Alias Math和Application Pool .NET v4.5
      3. 添加新应用程序而不是虚拟目录
      4. 在重新启动默认站点后浏览时,我收到错误503 Service Not Available。
      5. Web配置文件

        <?xml version="1.0" encoding="utf-8"?>
        <!--
          For more information on how to configure your ASP.NET application, please visit
          http://go.microsoft.com/fwlink/?LinkId=169433
          -->
        <configuration>
          <system.web>
            <compilation debug="true" targetFramework="4.5" />
            <httpRuntime targetFramework="4.5" />
          </system.web>
        </configuration>
        

        请求帮助。

0 个答案:

没有答案