【问题标题】:WCF REST WebInvoke UriTemplate & https IssueWCF REST WebInvoke UriTemplate 和 https 问题
【发布时间】:2011-12-15 06:35:07
【问题描述】:

我的 WCF 服务使用 WebInvoke 属性并使用 httpGetEnabled。

[OperationContract]
[WebInvoke(Method="POST", UriTemplate = "/Function1")]
void Function1(Stream input);

[OperationContract]
[WebInvoke(Method="POST", UriTemplate = "/Function2")]
void Function2( Stream input );

当我尝试让它与 https 一起使用时,我无法访问 UriTemplates。但是,我可以访问 svc 和 wsdl。

<services>
  <service behaviorConfiguration="SslBehavior" name="MyService">
    <endpoint address="" binding="webHttpBinding" contract="IMyService" behaviorConfiguration="WebBehavior" />
  </service>
</services>

<behaviors>
  <serviceBehaviors>
    <behavior name="SslBehavior">
      <serviceMetadata httpsGetEnabled="True" />
      <serviceDebug includeExceptionDetailInFaults="True"/>
    </behavior>
  </serviceBehaviors>

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

此服务托管在 IIS 7 中。我是否缺少明显的东西?我已经尝试了尽可能多的配置组合。当我尝试发布到 WebInvoke 链接之一时,我收到 404 错误。

另一家公司将发布到此服务,这就是它必须是 RESTfull 的原因

编辑

我确实在绑定节点中尝试过:

  <webHttpBinding>
    <binding name="SslBinding" transferMode="Streamed">
      <security mode="None">
        <transport clientCredentialType="None" />
      </security>
    </binding>
  </webHttpBinding>

并在端点上设置 BindingConfiguration。同样的问题:(

【问题讨论】:

  • 您是否在配置中设置了绑定的安全性?
  • 见下面我的回答。您可能想尝试将安全模式设置为传输。
  • 我认为你应该听蒂姆的。尝试安全模式=“传输”而不是“无”。此外,您可以设置以“https://”开头的端点地址之一

标签: .net wcf rest webinvoke


【解决方案1】:

尝试将安全模式设置为传输:

<bindings>
  <webHttpBinding>
    <binding name="SslBinding" transferMode="Streamed">
      <security mode="Transport">  
        <transport clientCredentialType="None" />     
    </security>     
  </binding>   
</webHttpBinding>

【讨论】:

  • 啊!想我需要阅读更多内容。我将模式设置为无。谢谢!这似乎成功了
  • 我现在可以在本地访问它,但是,当我发布它时,我无法从外部资源访问它:/
  • 你的本地盒子和你发布它的环境有什么不同吗?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-08-12
  • 1970-01-01
  • 1970-01-01
  • 2012-05-28
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多