当文件托管在共享驱动器上时,从https绑定WPF Image.Source

时间:2012-05-03 11:32:54

标签: wpf https proxy system.net

我有一个带<Image Source="{Binding myUrl}">的WPF应用程序,它显示从https地址检索到的图像。

我已经在.config中配置了代理:

   <defaultProxy enabled="true" useDefaultCredentials="true">
      <proxy bypassonlocal="true"
            proxyaddress="http://ourProxy:8080/" />
    </defaultProxy>

当应用程序托管在我的机器上并执行时,一切正常。

但是,如果我将应用程序及其配置文件的精确副本存储在共享驱动器(在我们的域中)并在我的机器上执行,则不再显示图像。

这是某种信任/权限吗?从共享驱动器执行时,如何显示图像(或者,我假设允许https连接)?

1 个答案:

答案 0 :(得分:0)

我创建了一个控制台应用来测试http连接,结果问题是使用defaultProxy设置app.config。

注意到此特定问题及其修复here