在 WCF 中使用 TransactionScope 回滚 SQL 事务
Posted
技术标签:
【中文标题】在 WCF 中使用 TransactionScope 回滚 SQL 事务【英文标题】:SQL Transaction Rollback using TransactionScope in WCF 【发布时间】:2014-05-30 05:49:06 【问题描述】:我有一个使用 WCF 服务的 Web 应用程序。它在 TransactionScope 中包装了几个方法调用,以防止数据损坏。但是,当使用 Web 应用程序时,它的方法调用似乎是成功的,因为它返回了适当的数据;数据库似乎没有提交数据。在实现事务支持之前,所有方法都有效并且数据已提交。 web.config 文件中的服务配置为:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpBinding" transactionFlow="true" />
</wsHttpBinding>
</bindings>
<services>
<service name="SSOAuthenticationService.SSOUserService">
<endpoint address="SSOAuthenticationService"
binding="wsHttpBinding"
contract="SSOAuthenticationService.ISSOUserService"
bindingName="wsHttpBinding"
listenUri="SSOAuthenticationService"
bindingConfiguration="wsHttpBinding" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="wsHttpBinding" scheme="http" bindingConfiguration="wsHttpBinding" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
对于客户来说:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpBinding_SSOUserService" receiveTimeout="00:20:00" sendTimeout="00:20:00" transactionFlow="True" maxReceivedMessageSize="2147483647" />
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://ssoauthservice.com/SSOUserService.svc/SSOAuthenticationService"
binding="wsHttpBinding" bindingConfiguration="wsHttpBinding_SSOUserService"
contract="SSOService.SSOUserService" name="wsHttpBinding_SSOUserService">
<identity>
<userPrincipalName value="SSOAuthServiceDev@local" />
</identity>
</endpoint>
</client>
该服务使用代码优先的 EF 数据库方法进行数据库访问。我不确定要包括哪些其他信息,但希望有人知道我做错了什么。
谢谢
【问题讨论】:
事务正在提交吗?否则会自动回滚。 是的,在成功的 Web 方法调用上,Web 应用程序中的事务范围正在使用 Complete 方法提交。 【参考方案1】:我知道这已经晚了,您很可能设法解决了它,但如果没有,请在客户端应用程序中尝试在启动事务范围之前启动服务代理
【讨论】:
以上是关于在 WCF 中使用 TransactionScope 回滚 SQL 事务的主要内容,如果未能解决你的问题,请参考以下文章
在类库项目中添加 WCF 服务引用,并在使用该类库的网站中添加相同的 WCF 引用。