1

在阅读了有关它的更多信息并尝试实现 wshttpbinding 之后,它就不会发生。无论我尝试什么,我都会收到以下错误消息(安全模式已被注释掉)。我理解为什么绑定之间的 SOAP 版本不同。

“(415) 无法处理消息,因为内容类型 'application/soap+xml; charset=utf-8' 不是预期的类型 'text/xml; charset=utf-8'”

我在以下链接中阅读了有关 TransportWithMessageCredentials 的更多信息:

http://msdn.microsoft.com/en-us/library/ms789011.aspx

但仍然无法让它工作。

我可以将 basicHttpBinding 用于内部应用程序并且效果很好(如果我不包含任何事务),但我在 WCF 层中的应用程序仍然需要支持事务(见下文),据我了解 basicHttpBinding 不支持,因为它不包含 transactionflow 属性。

[OperationContract]

[TransactionFlow(TransactionFlowOption.Allowed)]

using (TransactionScope ts = new TransactionScope(TransactionScopeOption.Required))

当我尝试在包含安全模式的情况下运行以下命令时,svc 配置编辑器甚至没有启动并引发以下错误:“System.InvalidOperationException:找不到与具有绑定 WSHttpBinding 的端点的方案 https 匹配的基地址.注册的基地址方案是[http]。”

我知道它需要某种 SSL/https 安全性,但我的网站(如下所示是 http)。这对于面向公众的网站来说很好,但对于内部网站,目前,我想做的就是支持交易。

这是我的 wsHttpBinding 服务器端设置:

<bindings>
      <wsHttpBinding>
        <binding name="WsHttpBinding_IYeagerTechWcfService" closeTimeout="00:02:00" openTimeout="00:02:00" receiveTimeout="24.20:31:23.6470000" sendTimeout="00:10:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" transactionFlow="true">
          <security mode="Transport" >
            <transport clientCredentialType = "Windows" />
          </security>
        </binding>
      </wsHttpBinding>
</bindings>

<?xml version="1.0"?>
<services>
  <clear />

  <service name="YeagerTechWcfService.YeagerTechWcfService">
    <endpoint address="" binding="wsHttpBinding" contract="YeagerTechWcfService.IYeagerTechWcfService" >
      <identity>
        <dns value="localhost" />
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://abc.com/yeagerte/YeagerTechWcfService.YeagerTechWcfService.svc" />
      </baseAddresses>
    </host>
  </service>
</services>

这是我的客户端设置:

<?xml version="1.0"?>
<client>
  <endpoint address="http://abc.com/yeagerte/YeagerTechWcfService.YeagerTechWcfService.svc"
    binding="wsHttpBinding" contract="YeagerTechWcfService.IYeagerTechWcfService"
    name="WsHttpBinding_IYeagerTechWcfService" />
</client>

有人可以提供以下内容:

是否有另一种方法来支持 WCF 中的 basicHttpBinding 事务或任何其他方式?

如果是这样,我该如何实施?

如果没有,我有什么选择?

对于上述问题,我可能已经找到了答案,但想由在这件事上更有经验的人来运行它。

我建议不要让 WCF 层处理事务(如上所述),而是在控制器将数据传递到 WCF 层时使用 basicHttpBinding 和以下代码:

// method here
using (TransactionScope ts = new TransactionScope(TransactionScopeOption.Required))
                        {
                            db.EditCategory(cat);
                           // the above code would execute the EditCategory method below in the WCF layer  and keep the transaction alive                                                   ts.Complete();
                            ts.Dispose();
                        }
                        return Json(new GridModel(db.GetCategories()));
// end method

WCF 层:

public void EditCategory(Category cat)
        {
            try
            {
              using (YeagerTechEntities DbContext = new YeagerTechEntities())
                {
                    Category category = new Category();

                    category.CategoryID = cat.CategoryID;
                    category.Description = cat.Description;

            // do another db update here or in another method...

                    DbContext.Entry(category).State = EntityState.Modified;
                    DbContext.SaveChanges();
                }
             }

            catch (Exception ex)
            {
                throw ex;
            }
        }

对于使用 SSL 的面向公众的网站,如何正确实现 wsHttpBinding?

4

1 回答 1

0

我在使用 WCF 事务时遇到了同样的问题,我将消息安全与 Windows 身份验证一起使用,并且不必设置任何证书。

<wsHttpBinding>
        <binding name="WSHttpBinding_Transactional" 
           transactionFlow="true">
          <security mode="Message">
            <transport clientCredentialType="Windows" proxyCredentialType="None" />
          </security>
        </binding>
 </wsHttpBinding>
于 2015-07-22T05:06:18.600 回答