如何在 IIS 上提供已编译的 Web 服务?

How to serve compiled web service on IIS?

我只得到了一个带有 .asmx 的文件夹和以前编译的带有 DLL 的 /bin 文件夹。我正在尝试 运行 在我的本地计算机上使用此 Web 服务,但出现错误。

到目前为止我做了以下事情:

  1. 已安装 IIS
  2. 在 IIS
  3. 中的 'default web site' 下创建了一个应用程序 'myWebService'
  4. 指向 c:\inetpub\wwwroot\myWebService

当我浏览到 http://localhost/myWebService

HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map

据我所知,404.3 错误意味着当请求到达 IIS 时,没有可以处理 asmx 文件的处理程序。

我建议您首先检查您的应用程序的处理程序映射中是否有 webservicehanlderfactory。

如果没有这样的处理程序映射,我建议您可以尝试以下解决方案来安装它。

对于服务器:

转到服务器管理器> 添加角色和功能Select 服务器池中的服务器转到功能> WCF 服务我选择了所有类别然后安装

对于Windows10:

打开控制面板 > Windows 功能 > Select IIS > 万维网服务并启用以下设置:

此外,如果你想在 IIS 上托管 asmx,你还应该有正确的 web.config 文件。

我建议您可以让提供商获取配置文件。如果你不明白,你就不能运行网络服务。

Web.config 示例:

<?xml version="1.0"?>
<configuration>

  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.8" />
    <httpRuntime targetFramework="4.8"/>
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <!--
        To browse web app root directory during debugging, set the value below to true.
        Set to false before deployment to avoid disclosing web app folder information.
      -->
    <directoryBrowse enabled="true"/>
  </system.webServer>

</configuration>