This is what I did...errors are gone but nothign is showing up...I am contacting the 3rd party to see if soemthign is messed up on their end...I thank you for that...I missed the WMS example...I was getting my prior code from another website..I believe their data is WGS 84, but it shoudl auto project right?' MAIN PAGE .xaml<esri:WmsLayer ID="LOGISLAYER"
Url="http://gis.logis.org/ArcGIS/services/MG_TEST/MapServer/WMSServer"
Initialized="WmsLayer_Initialized2"/>
MAIN PAGE vb.xaml Private Sub WmsLayer_Initialized2(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim myWmsLayer As ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer
myWmsLayer = TryCast(MyMap.Layers("LOGISLAYER"), ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer)
' You can control the visibility of which WMS layers are displayed by adding the
' sub-LayerID's to the String Array.
Dim myVisibleWmsLayers() As String = {"0"}
myWmsLayer.Layers = myVisibleWmsLayers
End Sub