Hi,
We use XamMap with Bing Maps as tile source. Everything works, but when we deploy on the staging server, we can only see the shape file but not the underlying tiles.
I've tried to already make the endpoint https in the servicereferences.clientconfig file:
<endpoint address="https://dev.virtualearth.net/webservices/v1/imageryservice/imageryservice.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IImageryService"
contract="VEImageryServiceReference.IImageryService" name="BasicHttpBinding_IImageryService" />
Now it tries to make a call to the service (before it didn't even call), but no tiles are rendered. I assume this is because bing maps returns a tile on http and not on https.
How can we make this work?
Thanks!
If your silverlight app is https: and the service call is not, or vice versa, you may be running into cross scheme security issues. You might find this post helpful: http://community.infragistics.com/forums/p/44635/243301.aspx#243301
And my posts earlier in the thread should provide more context and an alternate (though less preferable) solution.
Hope this helps!
-Graham