不具合
不具合 ID 番号 | BUG-000088254 |
---|---|
送信されました | June 10, 2015 |
最終更新日 | June 5, 2024 |
適用対象 | ArcGIS Web AppBuilder developer edition |
見つかったバージョン | 1.0 |
ステータス | Non-Reproducible |
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.
ArcGIS エキスパートのサポートを受ける
Esri Support アプリのダウンロード