<?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 Netwrok Map services Not Working in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/netwrok-map-services-not-working/m-p/632514#M16269</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;BR /&gt;&lt;SPAN&gt;Iam new to this GIS concepts...Iam working ona silverlight app..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is ..i cannot see the map on my web app which is from a webservice residing on my virtual server..i can see the map in the web browser but not in my web app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i can see other maps hosted on a different machine or my development machine..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please sugest any solutions for the above scenario..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S: i have searched about the problem and found a link which describes the problem but...my webservice dosent use any croos domains its on a single domain.:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Support/blogs/supportcenter/archive/2010/08/13/troubleshooting-tip-local-map-services-not-working.aspx"&gt;http://blogs.esri.com/Support/blogs/supportcenter/archive/2010/08/13/troubleshooting-tip-local-map-services-not-working.aspx&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Dec 2010 05:58:39 GMT</pubDate>
    <dc:creator>vamsibande</dc:creator>
    <dc:date>2010-12-08T05:58:39Z</dc:date>
    <item>
      <title>Netwrok Map services Not Working</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/netwrok-map-services-not-working/m-p/632514#M16269</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;BR /&gt;&lt;SPAN&gt;Iam new to this GIS concepts...Iam working ona silverlight app..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is ..i cannot see the map on my web app which is from a webservice residing on my virtual server..i can see the map in the web browser but not in my web app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i can see other maps hosted on a different machine or my development machine..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please sugest any solutions for the above scenario..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S: i have searched about the problem and found a link which describes the problem but...my webservice dosent use any croos domains its on a single domain.:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Support/blogs/supportcenter/archive/2010/08/13/troubleshooting-tip-local-map-services-not-working.aspx"&gt;http://blogs.esri.com/Support/blogs/supportcenter/archive/2010/08/13/troubleshooting-tip-local-map-services-not-working.aspx&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 05:58:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/netwrok-map-services-not-working/m-p/632514#M16269</guid>
      <dc:creator>vamsibande</dc:creator>
      <dc:date>2010-12-08T05:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Netwrok Map services Not Working</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/netwrok-map-services-not-working/m-p/632515#M16270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;At this stage, it's difficult to guess where the issue is.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest a debugging scenario in 2 steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Look at error message returned by layer initialization&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a) hook up an handler to layer event 'InitializationFailed' by adding this in XAML: InitializationFailed="Layer_InitializationFailed"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;b) display the error with this code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
private void Layer_InitializationFailed(object sender, EventArgs e)
{
&amp;nbsp; Layer layer = sender as Layer;
&amp;nbsp; MessageBox.Show(layer.InitializationFailure.Message);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) If then no idea about the problem, use an HTTP traffic sniffer such as fiddler to see the request your silverlight application is making. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that, even if your application and your services are on the same server, you need a cross domain policy file if you are not using the same domain path (which is the case while debugging).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/netwrok-map-services-not-working/m-p/632515#M16270</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-12T02:54:41Z</dc:date>
    </item>
  </channel>
</rss>

