无法通过HTTPS获得WCF休息服务

时间:2012-06-26 10:24:31

标签: c# .net wcf

我们正在运行一个ASP.NET应用程序,并且我已经为它添加了一个WCF Rest服务。在本地和在测试环境中部署时,这可以正常工作。问题是当我们部署到我们的生产环境时,它只是HTTPS。

我在线搜索并阅读了大部分答案,并尝试了很多东西。一切都没有运气。

这是我们的简单代码

[ServiceContract]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class ReportingService
{
    public ReportingService()
    {
        Thread.CurrentPrincipal = HttpContext.Current.User;
    }

    [OperationContract]
    [WebGet(UriTemplate = "get/{id}", ResponseFormat = WebMessageFormat.Json)]
    [PrincipalPermission(SecurityAction.Demand)]
    public List<RawReportTable> GetReport(string id)
    {
        ...
    }
}

在Global.asax.cs中我们有

RouteTable.Routes.Add(new ServiceRoute("api/reporting", new WebServiceHostFactory(), typeof(ReportingService)));

在我们的web.config中,我们为system.serviceModel

定义了以下内容

    

<standardEndpoints>
  <webHttpEndpoint>
    <standardEndpoint name="api" helpEnabled="true" automaticFormatSelectionEnabled="true" maxBufferSize="500000" maxReceivedMessageSize="500000">          
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="Transport" />
    </standardEndpoint>
  </webHttpEndpoint>
</standardEndpoints>

<behaviors>
  <endpointBehaviors>
    <behavior name="api">
      <webHttp />
    </behavior>
  </endpointBehaviors>

  <serviceBehaviors>
    <behavior name="">
      <serviceCredentials>
          <serviceCertificate storeLocation="LocalMachine" storeName="My" x509FindType="FindByThumbprint" findValue="d5 85 5b 37 89 47 6f 89 71 5b b7 5d 87 6f 2e e5 24 aa 57 b6" />
      </serviceCredentials>
    </behavior>
  </serviceBehaviors>
</behaviors>

<services>
  <service name="ReportingService">
    <endpoint address="api/reporting" behaviorConfiguration="api" binding="webHttpBinding" bindingConfiguration="webBinding" contract="WayfinderFM.Service.api.ReportingService" />
  </service>
</services>

<bindings>
  <webHttpBinding>
    <binding name="webBinding">
      <security mode="Transport" />
    </binding>
  </webHttpBinding>
</bindings>

通过此设置,我收到以下错误:     请求错误:服务器在处理请求时遇到错误。有关详细信息,请参阅服务器日志。

我认为(以及一些示例显示)我不再需要配置中的服务/端点内容,因为它已在路由中注册。

删除该部分我们仍然会收到相同的错误。我尝试了很多不同的配置,都没有运气。

奇怪的是/ api / reporting / help实际显示。只是不能使用任何服务。

有人有任何想法吗?我希望这是我错过的简单事情。

全部谢谢

修改

我相信这是与...有关     [的PrincipalPermission(SecurityAction.Demand)] 我们使用它来确保用户已经过身份验证,我们可以访问令牌。我发现PrincipalPermission.Demand() failing once WCF Service was moved to SSL遗憾的是没有答案。

1 个答案:

答案 0 :(得分:6)

讨厌回答我自己的问题,但在阅读了Rajesh的消息后,我更多地调查了错误。正如我的编辑所说,它与PrincipalPermission属性有关。如果我删除了它正在运行我的代码并且我的身份验证失败。

回到搜索互联网,我发现http://forums.silverlight.net/t/34954.aspx/1

我刚加入了serviceBehaviours。所以它看起来像

<serviceBehaviors>
    <behavior name="">
        <serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true" />
        <serviceAuthorization principalPermissionMode="None"/>
    </behavior>
</serviceBehaviors>

现在它可以工作,我可以调用我的服务并被拒绝,除非我通过身份验证等。是的

希望这可以帮助其他人解决这个问题