This section lists the prerequisites and steps for applying and verifying this patch.
...
Changes in Web.xml file
- Go to the location …<ConnectPortal>\conf.
- Open the web.xml file in a text editor.
Add In the filter section, add the following code snippet just after the </init-param> tag that follows <param-value>SAMEORIGIN</param-value> in the file.
Code Block language css theme Midnight <init-param> <param-name>hstsMaxAgeSeconds</param-name> <param-value>31536000</param-value> </init-param> <init-param> <param-name>hstsIncludeSubDomains</param-name> <param-value>true</param-value> </init-param>
- Save the file.
Changes in securityContext.xml
Go to ConnectPortal\resources_config\saml location.
Open securityContext.xml file.
Update the xsi:schemaLocation attribute as shown in the following code snippet.
Code Block language css xsi:schemaLocation="http://www.springframework.org/schema/beans classpath:org/springframework/beans/factory/xml/spring-beans.xsd http://www.springframework.org/schema/security classpath:org/springframework/security/config/spring-security-5.6.xsd http://www.springframework.org/schema/context classpath:org/springframework/context/config/spring-context.xsd">
- Save the file.
- Restart the Connect Portal.
Anchor | ||||
---|---|---|---|---|
|
...