Overview
When TLS 1.1 is blocked, you can force Cora SeQuence to communicate through TLS 1.2.
Procedure
- Add the following key under the
<appSettings>
section.<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
- Add
targetFramework="4.6.2"
to thehttpRuntime
key under thepages
section.
Old:< httpRuntime requestValidationMode="2.0" maxRequestLength="4096" executionTimeout="1200" enableVersionHeader="false" />
New:< httpRuntime requestValidationMode="2.0" maxRequestLength="4096" executionTimeout="1200" enableVersionHeader="false" targetFramework="4.6.2"/>