C# WebAPI 2已部署站点注释检索数据

C# WebAPI 2已部署站点注释检索数据,c#,asp.net-web-api,C#,Asp.net Web Api,我已经将WebAPI 2站点部署到沙箱机器上。API的默认网站会出现,但当我点击服务的URL(例如http://host/service/API/jobs)时,服务会无限期挂起,并且不会像在我的开发机器上那样返回数据。计算机上IIS中承载的其他服务似乎能够连接到SQL server数据库并检索信息 以下是应用程序的my web.config: <?xml version="1.0" encoding="UTF-8"?> <configuration>

我已经将WebAPI 2站点部署到沙箱机器上。API的默认网站会出现,但当我点击服务的URL(例如http://host/service/API/jobs)时,服务会无限期挂起,并且不会像在我的开发机器上那样返回数据。计算机上IIS中承载的其他服务似乎能够连接到SQL server数据库并检索信息

以下是应用程序的my web.config:

<?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <connectionStrings>
        <add name="dataConnection" connectionString="connectionStringRemoved" />
      </connectionStrings>
     <system.web>
        <authentication mode="Forms" />
       <compilation debug="true" targetFramework="4.5.1" />
       <httpRuntime targetFramework="4.5.1" />
       <identity impersonate="false" />
       <customErrors mode="Off" />
   </system.web>
   <system.webServer>
       <modules>
           <remove name="FormsAuthentication" />
       </modules>
       <handlers>
           <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
           <remove name="OPTIONSVerbHandler" />
           <remove name="TRACEVerbHandler" />
          <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
       </handlers>
       <tracing>
           <traceFailedRequests>
               <add path="*">
                <traceAreas>
                    <add provider="ASP" verbosity="Verbose" />
                    <add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" />
                    <add provider="ISAPI Extension" verbosity="Verbose" />
                    <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI" verbosity="Verbose" />
                </traceAreas>
                <failureDefinitions timeTaken="00:00:00" statusCodes="500" />
            </add>
        </traceFailedRequests>
    </tracing>
</system.webServer>
    <runtime>
       <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
       <dependentAssembly>
          <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
          <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
          <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
          <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
            <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
          <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
        </dependentAssembly>
        <dependentAssembly>
            <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
        </dependentAssembly>
        <dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
        </dependentAssembly>
        <dependentAssembly>
            <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
        </dependentAssembly>
        <dependentAssembly>
            <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
          </dependentAssembly>
    </assemblyBinding>
    </runtime>
</configuration>


您检查过网络流量吗?请求是否已发出?请尝试使用
http://host/api/jobs
而不是
http://host/service/api/jobs
@Dalorzo我必须用空格键入,因为这样不允许主机machinename,我想他的意思是在URL中没有“服务”的情况下试试http://hostname/service会显示API的默认网站?!?