.NET Sample App for Customer Account Data でいくつかの基本的なアクションを実行しようとしています。問題は、次のコード スニペットで発生します (銀行を選択してその詳細を期待している場合)。
protected void institutions_SelectedIndexChanged(object sender, EventArgs e)
{
try
{
if (institutions.SelectedValue == "PleaseSelect")
{
InstitutionDetails.Visible = false;
}
else
{
InstitutionDetails.Visible = true;
AggregationCategorizationService svc = Services.AggCatService.GetService(Cache, HttpContext.Current.User.Identity.Name);
InstitutionDetail insutitutionDetail = svc.GetInstitutionDetails(long.Parse(institutions.SelectedItem.Value));
次のエラーが表示されます。
エラーの詳細: GetInstitutionDetails の呼び出し中にエラーが発生しました: WebException: リモート サーバーがエラーを返しました: (407) プロキシ認証が必要です。Proxy-Authenticate: Negotiate,Kerberos,NTLM,Basic realm="fw.solar.local" Via: 1.1 FW Connection: close Proxy-Connection: close Pragma: no-cache Cache-Control: no-cache Content-Type: text/ html コンテンツの長さ: 701
サンプルを変更せずにそのまま実行しています。その理由は何ですか?どうすれば修正できますか?