AspNetCore.Docs/aspnetcore/migration/inc/remote-session.md

3.0 KiB

title description author ms.author monikerRange ms.date ms.topic uid
Remote app session state Remote app session state rick-anderson riande >= aspnetcore-6.0 11/9/2022 article migration/inc/remote-session

Remote app session state

Remote app session state will enable communication between the ASP.NET Core and ASP.NET app to retrieve the session state. This is enabled by exposing an endpoint on the ASP.NET app that can be queried to retrieve and set the session state.

HttpSessionState serialization

The xref:System.Web.SessionState.HttpSessionState object must be serialized for remote app session state to be enabled. This is accomplished through implementation of the type Microsoft.AspNetCore.SystemWebAdapters.SessionState.Serialization.ISessionSerializer, of which a default binary writer implementation is provided. This is added by the following code:

:::code language="csharp" source="~/migration/inc/samples/remote-session/Program.cs" id="snippet_Serialization" :::

Configuration

First, follow the remote app setup instructions to connect the ASP.NET Core and ASP.NET apps. Then, there are just a couple extra extension methods to call to enable remote app session state.

Configuration for ASP.NET Core involves calling AddRemoteAppSession and AddJsonSessionSerializer to register known session item types. The code should look similar to the following:

:::code language="csharp" source="~/migration/inc/samples/remote-session/Program.cs" id="snippet_Configuration" :::

Session support requires additional work for the ASP.NET Core pipeline, and is not turned on by default. It can be configured on a per-route basis via ASP.NET Core metadata.

For example, session support requires either to annotate a controller:

:::code language="csharp" source="~/migration/inc/samples/remote-session/SomeController.cs" id="snippet_Controller" :::

or to enable for all endpoints by default:

:::code language="csharp" source="~/migration/inc/samples/remote-session/Program.cs" id="snippet_RequireSystemWebAdapterSession" :::

The framework equivalent would look like the following change in Global.asax.cs:

:::code language="csharp" source="~/migration/inc/samples/remote-session/Global.asax.cs":::

Protocol

Readonly

Readonly session will retrieve the session state from the framework app without any sort of locking. This consists of a single GET request that will return a session state and can be closed immediately.

Readonly session will retrieve the session state from the framework app

Writeable

Writeable session state protocol starts with the same as the readonly, but differs in the following:

  • Requires an additional PUT request to update the state
  • The initial GET request must be kept open until the session is done; if closed, the session will not be able to be updated

Writeable session state protocol starts with the same as the readonly