WCF Rest Web service - IIS 中的错误请求

本文关键字:错误 请求 IIS Rest Web service WCF | 更新日期: 2023-09-27 17:56:29

当我将 WCF Rest 服务发布到 IIS 时,它遇到了问题。VS一切正常,但是当通过IIS运行时,我不断收到错误请求。

一些示例代码,我的服务就是这样简单的:

[ServiceContract]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
public class Admin
{
    [WebGet(UriTemplate = "Field/GetAll")]
    public IList<EntityFields> GetFields() ...

我已将路由添加到我的global.asax中:

RouteTable.Routes.Add(new ServiceRoute("Admin", new WebServiceHostFactory(), typeof(Admin)));

我的 web.config 看起来像这样。我希望这是我做错事的地方。请注意,从阅读这里和 MS 论坛等中,这已经改变和变形了很多次。

<system.web>
  <compilation debug="true" targetFramework="4.0" />
</system.web>
<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <add name="UrlRoutingModule" 
       type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  </modules>
  <handlers>
    <add name="UrlRoutingHandler"
       preCondition="integratedMode"
       verb="*"
       path="UrlRouting.axd"
       type="System.Web.HttpForbiddenHandler, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  </handlers>
</system.webServer>
<system.serviceModel>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
  <standardEndpoints>
    <webHttpEndpoint>
      <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true"/>
    </webHttpEndpoint>
  </standardEndpoints>
</system.serviceModel>

如果它们有用,请注意:

  • IIS 7.5
  • 视窗服务器 2008 R2
  • 我通过 AJAX 调用调用了很多使用 JSONP 的方法。
  • 因为我使用的是 JSONP,所以我设法让它工作的唯一方法是将所有必需的方法转换为 GET 并使用流来调用回调
  • 当我通过Visual Studio启动时,一切正常。当我在 IIS 中托管它时,我的问题出现了。

非常欢迎任何想法。

WCF Rest Web service - IIS 中的错误请求

在我的情况下,问题最终与 REST 和我的配置无关。我通过将以下内容添加到配置中来启用 WCF Web 服务:

<system.diagnostics>
  <sources>
    <source name="System.ServiceModel"
            switchValue="Information, ActivityTracing"
            propagateActivity="true" >
      <listeners>
        <add name="xml"/>
      </listeners>
    </source>
    <source name="System.ServiceModel.MessageLogging">
      <listeners>
        <add name="xml"/>
      </listeners>
    </source>
    <source name="myUserTraceSource"
            switchValue="Information, ActivityTracing">
      <listeners>
        <add name="xml"/>
      </listeners>
    </source>
  </sources>
  <sharedListeners>
    <add name="xml"
         type="System.Diagnostics.XmlWriterTraceListener"
         initializeData="C:'logs'Error.svclog" />
  </sharedListeners>
</system.diagnostics>

再次点击我的 Web 服务以获取错误,并在"SvcTraceViewer.exe"中弹出跟踪日志。这突出了我在数据库上使用集成安全性的事实。但是因为我通过浏览器和 IIS 托管站点访问该服务,所以我在应用程序池标识下访问数据库。这在 WCF 跟踪中突出显示了此错误:

System.Data.SqlClient.SqlException: Cannot open database "XYZ" requested by the login. The login failed...

所以,长话短说,我是一个傻瓜...