<?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 How to publish my SL website? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587061#M15033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Problem solved, thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Sep 2010 20:08:10 GMT</pubDate>
    <dc:creator>BinBin</dc:creator>
    <dc:date>2010-09-08T20:08:10Z</dc:date>
    <item>
      <title>How to publish my SL website?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587061#M15033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Problem solved, thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 20:08:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587061#M15033</guid>
      <dc:creator>BinBin</dc:creator>
      <dc:date>2010-09-08T20:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to publish my SL website?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587062#M15034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you added required MIME types in your IIS Server? Here you can find some information about deploying Silverlight applications:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/ff921170(PandP.20).aspx"&gt;http://msdn.microsoft.com/en-us/library/ff921170(PandP.20).aspx&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And the following URL shows you how to configure your IIS 7 web server to host a Silverlight application:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc725608(WS.10).aspx"&gt;http://technet.microsoft.com/en-us/library/cc725608(WS.10).aspx&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 20:47:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587062#M15034</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2010-09-08T20:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to publish my SL website?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587063#M15035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Basically all a silverlight app requires is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) A html page that contains and loads the Silverlight Plugin.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) A .xap file which is the Silverlight app (this is usual the output in the ClientBin folder of your website when you build it).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) Optionally (but highly recommended!) the silverlight.js file which helps users install the plugin if they don't already have it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Also as Ali mentions, the mimetype for the .xap file is important. As long as this is set, you can host your app on any webserver that can simply host html, javascript and .xap files (meaning there's no requirement on using IIS, ASP.NET, .NET etc). Of course if your website contains ASP.NET pages and/or services that the silverlight app communicates with, it will require an ASP.NET webserver like IIS.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 21:09:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587063#M15035</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-09-08T21:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to publish my SL website?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587064#M15036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Basically all a silverlight app requires is:&lt;BR /&gt;1) A html page that contains and loads the Silverlight Plugin.&lt;BR /&gt;2) A .xap file which is the Silverlight app (this is usual the output in the ClientBin folder of your website when you build it).&lt;BR /&gt;3) Optionally (but highly recommended!) the silverlight.js file which helps users install the plugin if they don't already have it.&lt;BR /&gt; &lt;BR /&gt;Also as Ali mentions, the mimetype for the .xap file is important. As long as this is set, you can host your app on any webserver that can simply host html, javascript and .xap files (meaning there's no requirement on using IIS, ASP.NET, .NET etc). Of course if your website contains ASP.NET pages and/or services that the silverlight app communicates with, it will require an ASP.NET webserver like IIS.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does the .xap file need to be in the same folder as the html page or can&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;param name="source" value="&amp;nbsp; location of .xap file&amp;nbsp; "/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the html page has the location of the .xap file &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to do this to deploy the application but develop further.&amp;nbsp; After rebuilding I just copy over the application files and the .xap file in a single directory without needing to access wwwroot directory.&amp;nbsp; The html page would point to the .xap file in the other directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Sep 2010 17:54:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587064#M15036</guid>
      <dc:creator>BenjaminClift</dc:creator>
      <dc:date>2010-09-30T17:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to publish my SL website?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587065#M15037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes that should be fine. In fact the default template that Visual Studio creates, it puts the .xap file in a ClientBin folder below the html page.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 20:10:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-publish-my-sl-website/m-p/587065#M15037</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-10-04T20:10:19Z</dc:date>
    </item>
  </channel>
</rss>

