A windows domain user who is not a named user in Portal for ArcGIS is unable to view a public web map in the Web AppBuilder for ArcGIS (Developer Edition) application.
上次发布: October 12, 2015ArcGIS Web AppBuilder developer edition
漏洞 ID 编号
BUG-000090281
已提交
August 26, 2015
上次修改时间
April 2, 2025
适用范围
ArcGIS Web AppBuilder developer edition
找到的版本
1.2
操作系统
Windows OS
操作系统版本
2008 R2 64 Bit
修正版本
1.3
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
附加信息
This bug is fixed in version 1.3 of Web AppBuilder for ArcGIS (Developer Edition).
解决办法
1. In the web application folder unzipped in IIS, open the following file, C:/inetpub/wwwroot/webapp/jimu.js/ConfigLoader.js
2. Press Ctrl + F to find 'credential.ssl'. The following is the section of code.
if(credential.ssl){
//if credential.ssl, it means that the protal is allSSL enabled
if(window.location.protocol === 'http:' && !tokenUtils.isInConfigOrPreviewWindow()){
window.location.href = portalUrlUtils.setHttpsProtocol(window.location.href);
return;
3. Change the If statement to: if(credential && credential.ssl){