This section lists the prerequisites and steps for applying and verifying this patch.
Though every release of Adeptia comes with seamless upgrades and bug-free patches, for customer's complex use cases, we recommend applying the patch in a non-production environment first followed by testing. After the use cases run successfully without any errors or warnings, you can apply the patch in the production environment. |
|
|
After applying this patch, refer to post patch deployment section for manual changes.
In this release, some manual changes are required in Connect Portal.
Take backup of securityContext.xml file from the above-mentioned location. (remove the prerequisites step for backup)
Go to Security for the administration UI section and make the following change:
Uncomment the following property:
<!-- <property name="entityBaseURL" value="http://localhost:8080/adeptia"/> -->
<bean id="contextProvider" class="org.springframework.security.saml.context.SAMLContextProviderLB">
<property name="scheme" value="http"/>
<property name="serverName" value="www.myserver.com"/>
<property name="serverPort" value="8080"/>
<property name="includeServerPortInRequestURL" value="false"/>
<property name="contextPath" value="/adeptia"/>
</bean>
This table explains the each property of contextProvider bean:
scheme | Name of the scheme (http or https). |
serverName | Name of the server. |
serverPort | Port number of the server. |
includeServerPortInRequestURL | To include server port number in the URL or not. It must be false. |
contextPath | Prefix of a URL path used to select the context(s) to which an incoming request is passed. A URL is in the format: http://hostname.com/contextPath/, where each of the path elements can be zero or more separated elements. It must be /adeptia. |
Property Name | Description |
---|
It will look like:
<bean id="contextProvider" class="org.springframework.security.saml.context.SAMLContextProviderLB">
<property name="scheme" value="http"/>
<property name="serverName" value="www.myserver.com"/>
<property name="serverPort" value="8080"/>
<property name="includeServerPortInRequestURL" value="false"/>
<property name="contextPath" value="/adeptia"/>
</bean>
If there were any other changes in the old file, you have to do the same changes manually in the replaced securityContext.xml file.
For older changes, refer to the old securityContext.xml file that you had saved as a backup. |
Restart the Connect Portal.
Take backup of apps.properties file from the above-mentioned location. (remove the prerequisites step for backup)
If there were any other changes in the old file, you have to do the same changes manually in the updated apps.properties file.
For older changes, refer to the old apps.properties file that you had saved as a backup. |
Once the post installation steps are done, start the Connect Portal.
Login to Adeptia Connect. If you log in successfully, indicates Connect Portal is updated successfully.