the following code give me an error. I have tested with an old application id and one i have just obtained with no luck. I am using the proxy the same way i do with google maps which is working.
//OPEN BING
//BingMapsLayer bingMapLayer = new BingMapsLayer("BB58D3D0C951C95D9E7FDA515956B9195B717C4F", BingMapsMapType.Aerial, @"C:\temp\BingMapLayerCache1");
BingMapsLayer bingMapLayer = new BingMapsLayer("ApVYtWmvuQDWs6P_v87rUyKqEELRx9CLVc45tJg8aITUdFTUZB2PK75Dq62-4oa3", BingMapsMapType.Aerial, @"C:\temp\BingMapLayerCache1");
LayerOverlay bingOverlay = new LayerOverlay();
bingOverlay.Layers.Add(bingMapLayer);
bingOverlay.WrappingMode = WrappingMode.WrapDateline;
bingOverlay.DrawTilesProgressChanged += new System.EventHandler<DrawTilesProgressChangedTileOverlayEventArgs>(googleOverlay_DrawTilesProgressChanged);
bingMapLayer.Proxy = System.Net.WebProxy.GetDefaultProxy();
bingOverlay.Name = "Bing";
wpfMap1.Overlays.Add("Bing", bingOverlay);
wpfMap1.Overlays.MoveToBottom("Bing");
wpfMap1.Refresh();
thanks
Phil