Issue:

The Standard Viewer no longer shows documents on client computers that were working previously. They all show a generic media graphic like below.

https://s3.amazonaws.com/cdn.freshdesk.com/data/helpdesk/attachments/production/69009875962/original/mceclip0.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAS6FNSMY2XLZULJPI%2F20210926%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210926T164248Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=9905364b4a06f3bf663a33be3420460d7895d1428d69de58440e6fc03ab238df

This has been observed in Windows 7 , Windows 8, and Windows 10 computers on multiple versions of Summation/eDisco (6.0.1, 6.2, 6.3, and 7.1) .

Resolution:

1. Install IIS UrlRewrite extension from here (If not already installed): https://www.iis.net/downloads/microsoft/url-rewrite

NOTE: if web server is offline (i.e. cannot reach the internet), then here is a full download for "url rewrite" that can be copied to the offline machine.

https://www.microsoft.com/en-us/download/details.aspx?id=47337

2. Navigate to %ProgramFiles%\AccessData\MAP\

3. Open the web.config file with your preferred text editor.

4. Paste the below code into the web.config file directly under the node:

<rewrite> 
<outboundRules>
<clear />
<rule name="Remove SameSite Lax">
<match serverVariable="RESPONSE_Set_Cookie" pattern="^(.*)(; SameSite=Lax)(.*)$" />
<action type="Rewrite" value="{R:1}{R:3}" />
rule>
outboundRules>
rewrite>

5. Open an elevated command prompt.

6. Type iisreset

7. Clear cache on all browsers impacted.

 

CAUSE:

A Microsoft .NET update released in November 2019 changed the way web.config looks or expects to receive cookies. This particular update was combined in several different KB updates from November and December 2019. This change to the web.config file accommodates the change in behavior.

https://devblogs.microsoft.com/dotnet/net-framework-november-2019-preview-of-quality-rollup/