This section lists the prerequisites and steps for applying and verifying this patch.
...
Expand |
---|
title | When upgrading from AC v3.5.24 |
---|
|
Upgrading from AC v3.5.24Changes in apps.properties fileGo to …<ConnectPortalInstallFolder>\resources_config location. - Open apps.properties file.
Below the Facebook section in the file, add the following code block for Microsoft Azure. Code Block |
---|
| microsoftazure.appKey=
microsoftazure.appKeySecret=
microsoftazure.oauthVersion=2.0
microsoftazure.oauth20.refreshToken=https://login.microsoftonline.com/{domain}/oauth2/v2.0/token
microsoftazure.oauth20.authorize=https://login.microsoftonline.com/{domain}/oauth2/v2.0/authorize
microsoftazure.oauth20.accessToken=https://login.microsoftonline.com/{domain}/oauth2/v2.0/token
microsoftazure.SecretId=
microsoftazure.scope=openid offline_access https://storage.azure.com/user_impersonation
microsoftazure.enableProduction=true |
- Save the file.
- Restart the Connect Portal.
Changes in Web.xml file- Go to the location …<ConnectPortal>\conf.
- Open the web.xml file in a text editor.
In the filter section, add the following code snippet just after the </init-param> tag that follows <param-value>SAMEORIGIN</param-value>. Code Block |
---|
| <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.xmlGo to …<ConnectServerInstallFolder>…<ConnectPortalInstallFolder>\AdeptiaServer\ServerKernel\etcConnectPortal\resources_config\saml location. Open securityContext.xml file. Update the xsi:schemaLocation attribute as shown in the following code snippet. Code Block |
---|
| 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.7.xsd
http://www.springframework.org/schema/context classpath:org/springframework/context/config/spring-context.xsd"> |
- Save the file.
Changes in launcher.propertiesGo to …<ConnectPortalInstallFolder>\ConnectPortal\conf location. - Copy the launcher.properties file from patch location, and paste it at …<ConnectPortalInstallFolder>\ConnectPortal\conf location.
- Open the copied file and make the same manual changes in the file that you have done in your previous launcher.properties file (that you had saved as a backup).
Save the file.
|
...