Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This section lists the prerequisites and steps for applying and verifying this patch.

...

  • Read and Write permissions on all sub-folders and files of .../AdeptiaConnect-<Version>
  • Take backup of apps.properties file from …<ConnectPortalInstallFolder>\resources_config location. This backup file will help you replicate the manual changes that you may have done in this file in the past before applying this patch. 
  • Take backup of web.xml file from …<ConnectPortal>\conf location. This backup file will help you replicate the manual changes that you may have done in this file in the past before applying this patch.
  • Take backup of securityContext.xml file from ConnectPortal\resources_config\saml location. This backup file will help you replicate the manual changes that you may have done in this file in the past before applying this patch.
  • Connect Server services are running.
  • Connect Portal service is stopped.
  • Ensure that you have followed the Prerequisites' instructions given on the Upgrade page.

...

In this release, some manual changes are required in Connect Portal.

...

in

...

Go to …<ConnectPortalInstallFolder>\resources_config location.

...

Below the Facebook section in the file, add the following code block for Microsoft Azure.

Code Block
languagecss
themeMidnight
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

...

Connect Portal

...

Changes in Web.xml file

...

In the filter section, add the following code snippet just after the </init-param> tag that follows <param-value>SAMEORIGIN</param-value>

Code Block
languagecss
themeMidnight
<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>

...

.

Changes in securityContext.xml

...