<?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: ArcGis runtime deployment in ArcGIS Runtime SDK for WPF (Retired) Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89604#M373</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks you Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Putting the 32 and 64 bits together will be useful for me. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For my specific problem, I think I have found the answer. It comes from my vb project that allow to change the target platform to any cpu but you need to go in the advanced option button even if it is available directry in the main compile option screen.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;François&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2014 12:40:41 GMT</pubDate>
    <dc:creator>FrancoisGilbert</dc:creator>
    <dc:date>2014-06-04T12:40:41Z</dc:date>
    <item>
      <title>ArcGis runtime deployment</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89602#M371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have an application that is installed twice on the same server. The 2 applications are using the exact same user control version. This user control refers to the esri.ArcGis.Client.local.dll etc libraries. This user control loads 2 local map services. This setutp is working well on a 32 bits windows server.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On the 64 bits windows 2008, the first installation is working well. On the second installation, the 2 local map services are not starting but the "base map" is starting well. It seems that the gis application does not find the Runtime library folder&amp;nbsp; because the local maps are the same for both installation. This makes me believe that the application cannot find the folder that contains the 64 bit runtime library. I have placed the runtime librairy just a level below the application exe.&amp;nbsp; I am not sure where I need to locate the runtime library folder to make sure the exe finds it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2014 19:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89602#M371</guid>
      <dc:creator>FrancoisGilbert</dc:creator>
      <dc:date>2014-06-03T19:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGis runtime deployment</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89603#M372</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;Does you arcgisruntimeX.X.X deployment folder contain the following?:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Client32&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Client64&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- LocalServer32&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- LocalServer64&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The deployment folder should be placed alongside your application exe (option 1 below), or alternatively in one known location and referenced from both apps via the ArcGISRuntime.InstallPath property (must be set before the ArcGISRuntime.Initialize call is made) (option 2 below).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;e.g.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;## Option 1 ##&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp1\MyApp1.exe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp1\arcgisruntime10.2.3\&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;...And...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp2\MyApp2.exe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp2\arcgisruntime10.2.3\&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;## Option 2 ##&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp1\MyApp1.exe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\MyApp2\MyApp2.exe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\MyApps\arcgisruntime10.2.3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Both apps must specify:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - ArcGISRuntime.InstallPath = @"C:\MyApps";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OR&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - ArcGISRuntime.InstallPath = @"@"..\..\MyApps""; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- The InstallPath property must be set before the ArcGISRuntime.Initialize call (and before any XAML initialization)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 08:07:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89603#M372</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2014-06-04T08:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGis runtime deployment</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89604#M373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks you Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Putting the 32 and 64 bits together will be useful for me. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For my specific problem, I think I have found the answer. It comes from my vb project that allow to change the target platform to any cpu but you need to go in the advanced option button even if it is available directry in the main compile option screen.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;François&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/arcgis-runtime-deployment/m-p/89604#M373</guid>
      <dc:creator>FrancoisGilbert</dc:creator>
      <dc:date>2014-06-04T12:40:41Z</dc:date>
    </item>
  </channel>
</rss>

