<?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: Local feature service with copied package files uses the same unpacked folder in ArcGIS Runtime SDK for WPF (Retired) Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101221#M408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Well, I just installed the version 10.2.2&lt;BR /&gt;&lt;BR /&gt;but the behavior is the same, it only unpack to one folder. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;the second layer includes the information saved in the first one.....Any suggested workaround?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, I uninstall the prior versions of ArcGIS Runtime (10.1.1, 10.2, .NET) before i install the version 10.2.2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2014 11:53:57 GMT</pubDate>
    <dc:creator>Cristian_Galindo</dc:creator>
    <dc:date>2014-04-07T11:53:57Z</dc:date>
    <item>
      <title>Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101216#M403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;DEAR PEOPLE FROM THE FUTURE: Here's what we've figured out so far???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When creating two LocalFeatureService I use two package files to define each service. the file package2 is a copy of the file package1.&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; var localCenterlineServiceMPK = new LocalFeatureService() &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;&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Path = @"C:\package1.mpk", &amp;nbsp;&amp;nbsp;&amp;nbsp; MaxRecords = 100000 &amp;nbsp;&amp;nbsp; };&amp;nbsp; &amp;nbsp;&amp;nbsp; ArcGISLocalFeatureLayer lineLayer = null;&amp;nbsp; &amp;nbsp;&amp;nbsp; localCenterlineServiceMPK.Start();&amp;nbsp; &amp;nbsp;&amp;nbsp; lineLayer = new ArcGISLocalFeatureLayer &amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp; Url = localCenterlineServiceMPK.UrlFeatureService + "/0", &amp;nbsp;&amp;nbsp;&amp;nbsp; Service = localCenterlineServiceMPK, &amp;nbsp;&amp;nbsp;&amp;nbsp; ID = "lines", &amp;nbsp;&amp;nbsp;&amp;nbsp; LayerName = "lines", &amp;nbsp;&amp;nbsp;&amp;nbsp; Editable = true, &amp;nbsp;&amp;nbsp;&amp;nbsp; DisableClientCaching = true, &amp;nbsp;&amp;nbsp;&amp;nbsp; AutoSave = false, &amp;nbsp;&amp;nbsp;&amp;nbsp; Mode = FeatureLayer.QueryMode.Snapshot, &amp;nbsp;&amp;nbsp;&amp;nbsp; OutFields = new OutFields { "*" } &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;&amp;nbsp; var localCenterlineServiceMPK2 = new LocalFeatureService() &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;&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; Path = @"C:\package2.mpk", &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;&amp;nbsp;&amp;nbsp; MaxRecords = 100000 &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ArcGISLocalFeatureLayer lineLayer2 = null;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; localCenterlineServiceMPK2.Start();&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lineLayer2 = new ArcGISLocalFeatureLayer &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;&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; Url = localCenterlineServiceMPK.UrlFeatureService + "/0", &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;&amp;nbsp;&amp;nbsp; Service = localCenterlineServiceMPK, &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;&amp;nbsp;&amp;nbsp; ID = "lines", &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;&amp;nbsp;&amp;nbsp; LayerName = "lines", &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;&amp;nbsp;&amp;nbsp; Editable = true, &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;&amp;nbsp;&amp;nbsp; DisableClientCaching = true, &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;&amp;nbsp;&amp;nbsp; AutoSave = false, &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;&amp;nbsp;&amp;nbsp; Mode = FeatureLayer.QueryMode.Snapshot, &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;&amp;nbsp;&amp;nbsp; OutFields = new OutFields { "*" } &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.MyMap.Layers.Add(lineLayer); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.MyMap.Layers.Add(lineLayer2);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I check the folder C:\Users\XXXX\AppData\Local\ArcGISRuntime\Documents\ArcGIS\Packages there is only one folder : package1...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I perform changes in the graphics of the layer &lt;/SPAN&gt;&lt;STRONG&gt;lineLayer&lt;/STRONG&gt;&lt;SPAN&gt; those changes are also visible in the &lt;/SPAN&gt;&lt;STRONG&gt;lineLayer2&lt;/STRONG&gt;&lt;SPAN&gt;. due both layers are sharing the same fileGDB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to force the ArcGISRuntime to unpack&amp;nbsp; both file packages (despite the fact that one is a copy), so the changes in one layer wont affect the other one.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 21:25:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101216#M403</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-03T21:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101217#M404</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;Which version are you using? This was fixed in v10.2 I believe, although 10.2.2 is the latest release.&lt;/SPAN&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>Fri, 04 Apr 2014 06:53:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101217#M404</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2014-04-04T06:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101218#M405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Which version are you using? This was fixed in v10.2 I believe, although 10.2.2 is the latest release.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Mike&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Mike!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using 10.2, been more acurate: I use the installer ArcGIS_Runtime_SDK_for_WPF_102_136375&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2014 11:12:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101218#M405</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-04T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101219#M406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, I just installed the version 10.2.2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but the behavior is the same, it only unpack to one folder. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the second layer includes the information saved in the first one.....Any suggested workaround?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2014 14:34:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101219#M406</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-04T14:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101220#M407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Well, I just installed the version 10.2.2 but the behavior is the same, it only unpack to one folder.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll investigate and update this thread as soon as i have more information.&lt;/SPAN&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>Mon, 07 Apr 2014 06:45:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101220#M407</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2014-04-07T06:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101221#M408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Well, I just installed the version 10.2.2&lt;BR /&gt;&lt;BR /&gt;but the behavior is the same, it only unpack to one folder. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;the second layer includes the information saved in the first one.....Any suggested workaround?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, I uninstall the prior versions of ArcGIS Runtime (10.1.1, 10.2, .NET) before i install the version 10.2.2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 11:53:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101221#M408</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-07T11:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101222#M409</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;Why are you creating two services from the same package?&lt;/SPAN&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>Tue, 08 Apr 2014 16:08:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101222#M409</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2014-04-08T16:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101223#M410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Why are you creating two services from the same package?&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Mike&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Because it is some&amp;nbsp; kind of template to hold different layers but with the same attributes, so the idea is to create several layers with common attributes.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 18:11:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101223#M410</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-08T18:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101224#M411</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;I do not quite understand the requirement - although you will see some improvement in performance from distributing the map rendering load across multiple local services (each is a separate process). To achieve this you will need to republish the Map Package in ArcMap with a different map/package name.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This behaviour is by design. Each Map Package has a real/internal name which is not related to the filename. It is the name you gave the map/package when creating in ArcMap. When starting local services the API inspects the MPKs and unpacks based on the actual map name. Therefore if you copy the file and rename it will try to unpack these to the same location and will likely raise the InitializationFailed event, which of course you should add logic to handle for any layer type, just in case: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/runtime-wpf/apiref/index.html?ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Layer~InitializationFailed_EV.html" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/runtime-wpf/apiref/index.html?ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Layer~InitializationFailed_EV.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&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, 09 Apr 2014 07:53:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101224#M411</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2014-04-09T07:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101225#M412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Mike, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I subscribe the code to the event initialization failed, but it does not hit that method, the service is created and functional, due both services return the same features and the changes made in one of them are reflected in the other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my requirement is this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a service that returns me a set of data that includes lat/long and feature attributes (I know that attributes, so I prepare a package file with a geoDB inside with those attributte fields) so If i make a call to the service i want to see the results of that call in&amp;nbsp; a layer (a different layer per each call).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I dont know how many calls the user in the applicaction is going to make, therefore, i though that the correct approach was to have some kind of package file template, copy it, and use it to create a new service then consume it to draw the features and use the persistence that the ArcGISLocalFeatureLayer gives to reduce the amont of traffic over the network in other sessions of the same user due some objects will be saved in the geoDB that the package creates.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Taking into account that I cannot goes to ArcMap and cretes a new package every time I make a call to the service, do you fancy any workaround?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 11:58:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101225#M412</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-09T11:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Local feature service with copied package files uses the same unpacked folder</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101226#M413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;could it work if I unpack the package (using 7Zip.dll), change the map name, then Pack it again...and use it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i think i will try it, what do you think?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 12:01:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/local-feature-service-with-copied-package-files/m-p/101226#M413</guid>
      <dc:creator>Cristian_Galindo</dc:creator>
      <dc:date>2014-04-09T12:01:09Z</dc:date>
    </item>
  </channel>
</rss>

