【发布时间】:2013-07-24 08:40:25
【问题描述】:
我正在尝试对客户帐户数据的 .NET 示例应用程序执行一些基本操作。 问题发生在以下代码 sn-p 中(当我选择银行并期待其详细信息时):
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)代理 需要身份验证。代理验证: 协商,Kerberos,NTLM,基本领域 =“fw.solar.local” 通过:1.1 FW 连接:关闭代理连接:关闭杂注:无缓存 Cache-Control: no-cache Content-Type: text/html Content-Length: 701
我按原样执行示例,没有任何修改。 这可能是什么原因?我该如何解决?
【问题讨论】:
标签: intuit-partner-platform customer-account-data-api