I'm trying to perform some basic actions on the .NET Sample App for Customer Account Data. The problem happens in the following code snippet (when I'm selecting a bank and expecting its details):
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));
I recieve the following error:
Error detail: Error occurred while calling GetInstitutionDetails: WebException: The remote server returned an error: (407) Proxy Authentication Required. 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 Content-Length: 701
I'm executing the sample as is, without any modifications. What can be the reason of it? And how can I fix it?