Page tree
Skip to end of metadata
Go to start of metadata

This page is no longer maintained and may contain obsolete information.

In the CAST Engineering Dashboard it is possible to click a link called Technical Context that will take the user directly into the CAST Discovery Portal. This is explained in further detail in What is the CAST Engineering Dashboard (see the section entitled Interaction with the CAST Discovery Portal). If, for any reason, you wish to disable the Technical Context link to prevent users accessing the CAST Discovery Portal, it is possible to do so by configuring the web.xml file. First locate the following section in the web.xml:

<context-param>
	<param-name>withDiscoveryPortalBridge</param-name>
	<param-value>true</param-value>
	<description>activate links to Discovery Portal</description>
</context-param>

Change the true parameter to false as follows:

<context-param>
<param-name>withDiscoveryPortalBridge</param-name>
<param-value>false</param-value>
<description>activate links to Discovery Portal</description>
</context-param>
Following any changes you make, save the web.xml file and then restart your J2EE compliant application server so that the changes are taken into account.
  • No labels