laptop and a wrench

不具合

The JavaScript Identity Manager requests are incorrectly formatted, causing errors when going through the proxy.

最後に公開された状態: May 8, 2019 ArcGIS Web AppBuilder developer edition
不具合 ID 番号 BUG-000088254
送信されましたJune 10, 2015
最終更新日June 5, 2024
適用対象ArcGIS Web AppBuilder developer edition
見つかったバージョン1.0
ステータスNon-Reproducible

参考情報

This issue cannot be reproduced.

対処法

A temporary fix can be accomplished by changing the '?' to a '&' in the proxy.ashx file by adding the following code:

 

if ((uri.Split('?').Length - 1) > 1)

{

StringBuilder sb = new StringBuilder(uri);

sb[uri.LastIndexOf("?")] = '&';

uri = sb.ToString();

}

 

After this line:

 

if (uri.StartsWith("http%3a%2f%2f", StringComparison.InvariantCultureIgnoreCase) || uri.StartsWith("https%3a%2f%2f", StringComparison.InvariantCultureIgnoreCase))

 

The following namespace also needs to be added:

 

using System.Text;

 

Now, the application runs as expected.

 

Please also see the attached proxy.ashx file for reference.

再現の手順

不具合 ID: BUG-000088254

ソフトウェア:

  • ArcGIS Web AppBuilder developer edition

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動