<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: WMS service not adding to the map in Silverlight in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12166#M285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry, not sure I can help. I rarely published dgn files.&lt;BR /&gt;&lt;BR /&gt;Nevertheless are you sure it's a WMS issue? Is it working when using the MapServer and an ArcGISMapServiceLayer?&lt;BR /&gt;&lt;BR /&gt;My only clue about WMS: are you sure the layer "1" is the one containing the dgns?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; dbroux &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Thank you for your reply you were right the problem was with the WMS.Layers I corrected it and the dgn's displayed fine...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason I publish the dgns was I have over a thousand different symbols for my geometry's but when I import this dgn files into ArcSDE I loose the geometry styles .. so I decided to publish the dgn itself..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any other way of&amp;nbsp; getting my symbols into the geodatabase?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Mar 2013 10:28:32 GMT</pubDate>
    <dc:creator>SantoshV</dc:creator>
    <dc:date>2013-03-11T10:28:32Z</dc:date>
    <item>
      <title>WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12160#M279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I have created a MapService on ArcGIS Server 10 and enabled the&amp;nbsp; WMS capability &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and wrote a code to add this WMS service on my Silverlight 4 map application but it does not add the service, the map is not visible, but when I add the WMS url in ArcMAP I can view the map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Please comment what am I missing here?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Code goes here &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer newLayer = new ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newLayer.Url = "http://dev9/arcgis/services/merged_soi1/MapServer/WMSServer";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newLayer.ID = "newLayer1";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newLayer.SkipGetCapabilities = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyMap.Layers.Add(newLayer);&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2013 03:27:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12160#M279</guid>
      <dc:creator>SantoshV</dc:creator>
      <dc:date>2013-03-01T03:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12161#M280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You have to set the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client.Toolkit.DataSources~ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer~Layers.html"&gt;WMS.Layers &lt;/A&gt;&lt;SPAN&gt;property, which is required to get the layer displayed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you still run into problems after setting this property, try using fiddler to look at the requests sent to the server. That might give a clue about the issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 07:02:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12161#M280</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-03-04T07:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12162#M281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You have to set the &lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client.Toolkit.DataSources~ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer~Layers.html"&gt;WMS.Layers &lt;/A&gt;property, which is required to get the layer displayed.&lt;BR /&gt;If you still run into problems after setting this property, try using fiddler to look at the requests sent to the server. That might give a clue about the issue.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thank you for your reply&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You were right after setting the WMS.Layer property it worked fine..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But I still have an issue &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; I have added a few .dgn files in the .mxd and published this data which I wanted to consume as an WMS service in order to retain its current symbologies&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; But the dgn map is not visible or projected on the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Is this a problem with Projection system ..how do I address this issue..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please guide me to&amp;nbsp; publish and display a few .dgn's&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 09:57:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12162#M281</guid>
      <dc:creator>SantoshV</dc:creator>
      <dc:date>2013-03-04T09:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12163#M282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;But the dgn map is not visible or projected on the map.&lt;BR /&gt; Is this a problem with Projection system ..how do I address this issue..&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Before publishing your mxd, you have to set the&lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Defining_a_spatial_reference_for_a_CAD_dataset/001000000086000000/"&gt; spatial reference of your dgn files &lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 10:54:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12163#M282</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-03-04T10:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12164#M283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Before publishing your mxd, you have to set the&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Defining_a_spatial_reference_for_a_CAD_dataset/001000000086000000/" rel="nofollow noopener noreferrer" target="_blank"&gt; spatial reference of your dgn files &lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Thank you for you reply I have set the spatial reference for the .dgn file &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The .dgn is now correctly displayed on the map in ArcMAP where I am using Bing maps as my base map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I call this .dgn into my ArcGIS Silverlight application the .dgn is not seen&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esriWMS:WmsLayer ID="AGSWMSLayer" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://dev9/arcgis/services/merged_soi1/MapServer/WMSServer"&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SkipGetCapabilities="False"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Layers="1" Version="1.3" Opacity="0.7" /&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What am I missing here? I have tried everything I know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please guide...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:31:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12164#M283</guid>
      <dc:creator>SantoshV</dc:creator>
      <dc:date>2021-12-10T20:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12165#M284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, not sure I can help. I rarely published dgn files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nevertheless are you sure it's a WMS issue? Is it working when using the MapServer and an ArcGISMapServiceLayer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My only clue about WMS: are you sure the layer "1" is the one containing the dgns?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 16:58:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12165#M284</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-03-04T16:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: WMS service not adding to the map in Silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12166#M285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry, not sure I can help. I rarely published dgn files.&lt;BR /&gt;&lt;BR /&gt;Nevertheless are you sure it's a WMS issue? Is it working when using the MapServer and an ArcGISMapServiceLayer?&lt;BR /&gt;&lt;BR /&gt;My only clue about WMS: are you sure the layer "1" is the one containing the dgns?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; dbroux &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Thank you for your reply you were right the problem was with the WMS.Layers I corrected it and the dgn's displayed fine...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason I publish the dgns was I have over a thousand different symbols for my geometry's but when I import this dgn files into ArcSDE I loose the geometry styles .. so I decided to publish the dgn itself..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any other way of&amp;nbsp; getting my symbols into the geodatabase?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 10:28:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wms-service-not-adding-to-the-map-in-silverlight/m-p/12166#M285</guid>
      <dc:creator>SantoshV</dc:creator>
      <dc:date>2013-03-11T10:28:32Z</dc:date>
    </item>
  </channel>
</rss>

