0

I have a WPF app with <Image Source="{Binding myUrl}"> that displays images retrieved from an https address.

I've configured the proxy in the .config as such:

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

When the application is hosted on my machine and executed everything displays fine.

However, if I store an exact copy of the application and its configuration files on a shared drive (within our domain) and execute it on my machine the images no longer appear.

Is this some kind of trust/permissions thing? How can I get the images to show (or, i assume, allow the https connection) when executing from the shared drive?

Stafford Williams
  • 9,696
  • 8
  • 50
  • 101

1 Answers1

0

I created a console app to test http connections, turns out the problem is with the defaultProxy setting app.config.

This specific issue and its fix is noted here.

Community
  • 1
  • 1
Stafford Williams
  • 9,696
  • 8
  • 50
  • 101