IBM Mobilefirst 6.3应用程序控制台 - 禁用应用程序版本旁边的下拉列表

时间:2018-05-14 20:50:34

标签: ibm-mobilefirst mobilefirst-server

我开发了一个混合应用程序。当我在本地服务器上部署此应用程序时,我发现应用程序版本号旁边的下拉列表已禁用。有人可以帮助找到代码中可能禁用此下拉列表的设置吗?附上截图以供参考。

提前致谢。enter image description here

1 个答案:

答案 0 :(得分:0)

自定义安全测试不包含任何领域。由开发人员添加所需的域集。

在您的方案中,要激活远程禁用选项,您应该在authenticationConfig.xml中修改customSecurityTest并添加

<test realm="wl_remoteDisableRealm"/>

到它。

例如,以下customSecurityTest:

<customSecurityTest name="customTests">
     <test realm="wl_antiXSRFRealm" step="1"/>
     <test realm="wl_remoteDisableRealm" step="1"/>
     <test realm="wl_directUpdateRealm" mode="perSession" step="1"/>
</customSecurityTest>

已添加antiXSRF,remoteDisable和DirectUpdate领域,不再有。

注意:如果要对authenticationConfig.xml进行修改,请确保重新部署已修改的运行时war文件。

有关预定义身份验证领域的更多详细信息here