Hello, I'm hoping someone can shed some light on the issue I'm having. The project I'm working on initially utilized the standard ArcGIS Tiled Map Service Layer, but recently needed to be switched to use Bing Maps. I've looked at the instructions on how to setup up Bing Map Imagery services within the Silverlight API at the following link:http://help.arcgis.com/en/webapi/silverlight/help/index.html#/Using_Bing_Maps_Imagery_Geocode_and_Ro...But I was not able to successfully implement the instructions. I received no error message, but the Bing Map does not appear in the Silverlight project. What am I doing wrong?The instructions also mentioned "one important item that some folks overlook is that the Bing Map products use a web Mercator projection, which then requires that the map service being consumed from the ArcGIS Server to be set to this same projection". Is this something that must be done in the Silverlight project or on the ArcGIS server? How does one accomplish this?Here is the XAML for my project. The layers for the project are on an ArcGIS Server v.10. <navigation:Page x:Class="SilverlightApplication1.Views.Map"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:hand="clr-namespace:System.Windows.Input;assembly=System.Windows"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:esri="clr-namespace:ESRI.ArcGIS.Client;assembly=ESRI.ArcGIS.Client"
xmlns:esriGeometry="clr-namespace:ESRI.ArcGIS.Client.Geometry;assembly=ESRI.ArcGIS.Client"
xmlns:esriToolkit="clr-namespace:ESRI.ArcGIS.Client.Toolkit;assembly=ESRI.ArcGIS.Client.Toolkit"
xmlns:esriConverters="clr-namespace:ESRI.ArcGIS.Client.ValueConverters;assembly=ESRI.ArcGIS.Client"
xmlns:esriSymbols="clr-namespace:ESRI.ArcGIS.Client.FeatureService.Symbols;assembly=ESRI.ArcGIS.Client"
xmlns:esriFillSymbols="clr-namespace:ESRI.ArcGIS.Client.Symbols;assembly=ESRI.ArcGIS.Client"
xmlns:esriBehaviors="clr-namespace:ESRI.ArcGIS.Client.Behaviors;assembly=ESRI.ArcGIS.Client.Behaviors"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:bing="clr-namespace:ESRI.ArcGIS.Client.Bing;assembly=ESRI.ArcGIS.Client.Bing"
d:DesignWidth="690" d:DesignHeight="480"
Title="Page Title Goes Here">
<Grid x:Name="LayoutRoot">
<Grid.Resources>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter" />
<esriFillSymbols:SimpleFillSymbol x:Name="MyFillSymbol" Fill="#6600FFFF" BorderBrush="Cyan" BorderThickness="2" />
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter1"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter2"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter3"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter4"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter5"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter6"/>
<esriConverters:DictionaryConverter x:Name="MyDictionaryConverter7"/>
<esriFillSymbols:SimpleLineSymbol x:Name="ProjectFillSymbol" Width="6" Color="#FF4E20E5" />
</Grid.Resources>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.291*"/>
<ColumnDefinition Width="0.709*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="200"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Grid.Row="1" VerticalAlignment="Bottom" Margin="0,0,43,0" d:LayoutOverrides="Width, GridBox"/>
<Rectangle Grid.Column="1" Fill="White" Margin="10,0,0,0" Grid.RowSpan="2" Stroke="#FF666666" StrokeThickness="5"/>
<esri:Map x:Name="MyMap" Cursor="Hand" Grid.RowSpan="2" Extent="-121.842, 37.76, -120.789, 38.01" BorderThickness="10" BorderBrush="#FFCCCCCC" Grid.Column="1" Margin="15,5,5,5" Padding="0" Foreground="{x:Null}">
<i:Interaction.Behaviors>
<esriBehaviors:ConstrainExtentBehavior ConstrainedExtent="-121.842, 37.76, -120.789, 38.01" />
</i:Interaction.Behaviors>
<bing:TileLayer ID="BingAerialWithLabels" LayerStyle="AerialWithLabels" ServerType="Production" Token="{TOKEN_KEY_GOES_HERE}"></bing:TileLayer>
<!--<esri:ArcGISTiledMapServiceLayer ID="StreetMapLayer"
Url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer"/>-->
<esri:FeatureLayer x:Name="SJCounty" Opacity=".50" Url="http://gisweb/ArcGIS/rest/services/CountyOnly/MapServer/0" Color="#FF0DC04A" />
<!--</esri:FeatureLayer>-->
<esri:FeatureLayer x:Name="Projects" Url="http://gisweb/ArcGIS/rest/services/ProjectsOnly/MapServer/0" FeatureSymbol="{StaticResource ProjectFillSymbol}" Color="#FFEFEFEF" SelectionColor="#FF4E20E5">
<esri:FeatureLayer.OutFields>
<sys:String>Project_Name</sys:String>
<sys:String>Project_Description</sys:String>
<sys:String>Total_Cost</sys:String>
<sys:String>Funding</sys:String>
<sys:String>Const_Date</sys:String>
<sys:String>Compl_Date</sys:String>
<sys:String>Link</sys:String>
</esri:FeatureLayer.OutFields>
<esri:FeatureLayer.MapTip>
<Grid esri:GraphicsLayer.MapTipHideDelay="0:0:1.5">
<Rectangle RadiusX="8" RadiusY="8" Fill="#44000000" Margin="4,4,-4,-4" />
<Rectangle RadiusX="5" RadiusY="5" Margin="2" >
<Rectangle.Fill>
<LinearGradientBrush EndPoint="1.038,1.136" StartPoint="0.015,0.188">
<GradientStop Color="#FFFFFFFF"/>
<GradientStop Color="#FFFFFFFF" Offset="0.946"/>
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
<Border CornerRadius="5" BorderBrush="#FF666666" BorderThickness="2" esri:GraphicsLayer.MapTipHideDelay="0:0:1.5" />
</Grid>
</esri:FeatureLayer.MapTip>
</esri:FeatureLayer>
</esri:Map>
<ScrollViewer VerticalScrollBarVisibility="Auto" Margin="0,0,0,10" Grid.RowSpan="2" Background="White" BorderBrush="{x:Null}" FontFamily="Arial" FontSize="16">
<StackPanel VerticalAlignment="Top" HorizontalAlignment="Left">
<TextBlock TextWrapping="Wrap" Margin="-8,0,8,0" FontFamily="Arial" Padding="10" ScrollViewer.VerticalScrollBarVisibility="Visible" UseLayoutRounding="True" FontSize="16"><Span><Run Text="Text Goes Here"/></Span></TextBlock>
</StackPanel>
</ScrollViewer>
<esriToolkit:Navigation x:Name="MyNavigation" Margin="20,0,0,10" Map="{Binding ElementName=MyMap}" Grid.Column="1" Grid.Row="1" d:LayoutOverrides="HorizontalAlignment" VerticalAlignment="Bottom" />
</Grid>
</navigation:Page>
Any help is greatly appreciated.Albert