Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Errors occur in applications that combine transaction flow and remote calls after the July 2018 .NET Framework Security and Quality Rollups are installed


View products that this article applies to.

Symptoms

After you install the July 2018 .NET Framework Security and Quality Rollups that apply to .NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, and 4.7.2 on Windows 7 Service Pack 1 (SP1), Windows Server 2008 R2 SP1, or Windows Server 2008 SP2, you notice errors in a .NET Framework application that meets the following criteria:

  • The application uses instances of the System.Transaction.TransactionScope class in which transaction flow is enabled by passing TransactionScopeAsyncFlowOption.Enabled to the constructor.
  • The application makes one or more remote calls while one of these transaction scopes is active. In this case, a remote call is any call that travels through a transparent proxy before it reaches the server object. Examples of remote calls include calls to other application domains and calls made through remoting channels, such as the client channels that are defined in the System.Runtime.Remoting.Channels namespaces.
  • After the remote call, System.Transactions.Transaction.Current returns a null value instead of the value that was returned before the remote call.

↑ Back to the top


Workaround

To work around this issue, try any of the following methods:

  • For each transaction scope that enables transaction flow, change the application to make sure that no remote calls occur anywhere in the code that runs while the transaction scope is active. When you determine whether a transaction scope contains any remote calls, consider the following guidelines:
    • A call to a static method is never a remote call.
    • For a call to an instance method on a target object, the call is remote only if the target object is a transparent proxy.
    • For a call to a constructor, the call is remote only if the constructed object is a transparent proxy.
    Note You can always use the System.Runtime.Remoting.RemotingServices.IsTransparentProxy method to check whether an object is a transparent proxy.
  • Disable transaction flow by removing the TransactionScopeAsyncFlowOption.Enabled constructor argument. 
  • The Transaction.Current property is not automatically serialized to the remote call. It must be passed as a parameter. If the remote call does not pass the transaction as a parameter and does not make a callback to the client during the remote call, you can create the remote call inside a new TransactionScope object that uses the TransactionScopeOptions.Suppress option. Inside this suppress transaction scope, the Transaction.Current property has a null value.

↑ Back to the top


Status

We are aware of this issue and are currently working on a resolution.

↑ Back to the top


Keywords: kbprb

↑ Back to the top

Article Info
Article ID : 4463405
Revision : 13
Created on : 9/12/2018
Published on : 9/12/2018
Exists online : False
Views : 225