<?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: A synchronization problem on WPF mobile application  in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694837#M8798</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;Thanks for your reply. My issue is on sync. Actually, my sync is always successful when I debug my code. But I cannot see the new collected data in the geodatabase in our server when I check &lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;the&lt;/SPAN&gt; data using ArcCatalog after I sync. However, after I edit the new collected data and sync it, it can be seen in the geodatabase. Adding new data uses code&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; FeatureTable.AddFeatureAsync(_feature); &lt;SPAN style="font-family: verdana,geneva,sans-serif;"&gt;editing data uses codes&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; FeatureTable.UpdateFeatureAsync(_feature). I just guess that maybe AddFeatureAsync has some problems which let sync function cannot identify the adding changes, but UpdateFeatureAsync can. Not sure.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2018 17:16:13 GMT</pubDate>
    <dc:creator>sailiTang</dc:creator>
    <dc:date>2018-04-27T17:16:13Z</dc:date>
    <item>
      <title>A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694831#M8792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="text-indent: 9.6pt;"&gt;I am using ArcGIS Runtime SDK for .NET WPF 100.2 to develop mobile applications. I got a problem on “synchronize” function. When the app generates an offline database and then collect data, it works well, but the new collected data cannot be synchronized to our geodatabase when I press the “Synchronize” button. For the Synchronized function, I am using the code in this sample &lt;A href="https://developers.arcgis.com/net/latest/wpf/sample-code/editandsyncfeatures.htm"&gt;https://developers.arcgis.com/net/latest/wpf/sample-code/editandsyncfeatures.htm&lt;/A&gt;. The synchronization is successful, but I cannot find the new data in our geodatabase. However, after I edit these new data(such as changing some attributes’ values), it can be synchronized to geodatabase. It seems like “synchronize’ cannot identify new data, but edited data. Is it normal? In my code, the SyncDirection is Bidirectional, I run the code step by step and the synchronize always finished successfully.&amp;nbsp;Does who know what reason causes this problem? How I fix it? Thanks&lt;/P&gt;&lt;P style="text-indent: 9.6pt;"&gt;Saili&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 16:00:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694831#M8792</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-04-26T16:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694832#M8793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salli,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure when you create a new feature you call it on ServiceffeatureTable as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Uri featureServiceUri = new Uri("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FSync%2FWildfireSync%2FFeatureServer%2F0" rel="nofollow" target="_blank"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/Sync/WildfireSync/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;BR /&gt;ServiceFeatureTable _featureTable = new ServiceFeatureTable(featureServiceUri);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;private async void GeoViewTapped(object sender, GeoViewInputEventArgs e)&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MapPoint point = (MapPoint)e.Location;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;&amp;nbsp; var newFeature = _featureTable.CreateFeature();&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newFeature.Geometry = point;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newFeature.SetAttributeValue("Attribute_Field", 1000);&lt;/P&gt;&lt;P&gt;try&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;await _featureTable.AddFeatureAsync(newFeature);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;await _featureTable.ApplyEditsAsync();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;catch (ArcGISRuntimeException ex)&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Debug.WriteLine(ex.Message);&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 16:32:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694832#M8793</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2018-04-26T16:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694833#M8794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much for your help, Nagma. I have tried your code, but doesn't work&amp;nbsp;to me. I always got error messages. Please see the image. My code is like the follows. The new data can be saved to the offline database after the following code runs. But when I synchronized the offline geodatabse, the new data won't be synchronized to our geodatabase, but edited data can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Private _feature As ArcGISFeature = Nothing&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;_feature =&amp;nbsp;Offlinedatabase.GeodatabaseFeatureTables(0).CreateFeature()&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;_feature.Geometry = ptloc&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;_feature.SetAttributeValue(Constants.COL_CREATED_BY, Environment.UserName)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; _feature.SetAttributeValue(Constants.COL_CREATION_DATE, Convert.ToDateTime(DateTime.Now.ToString(Constants.formatDateTime)))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Await _feature.FeatureTable.AddFeatureAsync(_feature)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/403158_ApplyEditsError.jpg" style="width: 620px; height: 348px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 19:29:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694833#M8794</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-04-26T19:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694834#M8795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salli,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you try to create a new feature without setting the attribute value and see if it is successful.&lt;/P&gt;&lt;P&gt;If not,&amp;nbsp;I would suggest looking at the fiddler request when you call&amp;nbsp;&lt;STRONG&gt;&lt;EM style="background-color: #ffffff; border: 0px;"&gt;Await _feature.FeatureTable.AddFeatureAsync(_feature) &lt;/EM&gt;&lt;/STRONG&gt;for further troubleshooting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How about if you use this service:&amp;nbsp;&lt;SPAN style="background-color: #ffffff; border: 0px;"&gt;"&lt;/SPAN&gt;&lt;A class="" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FSync%2FWildfireSync%2FFeatureServer%2F0" rel="nofollow" style="color: #000000; background-color: #ffffff; border: 0px; text-decoration: underline; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/Sync/WildfireSync/FeatureServer/0&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;Does it work ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 20:46:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694834#M8795</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2018-04-26T20:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694835#M8796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another thing that might be affecting could be if you have enabled editor tracking on your feature service. Could you confirm if that is enabled?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 07:35:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694835#M8796</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2018-04-27T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694836#M8797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am unclear, are you having an issue syncing or saving any new feature?&amp;nbsp; In the thread title and description you mention sync issue, but this post makes it look like the issue is trying to save a new feature into an offline geodatabase.&amp;nbsp; Also are you using the geaodatabase downloaded from the sample service, or do you have your own service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not think the issue is with Editor Tracking because that exception is thrown when you try to set that attribute value, not on save.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 15:48:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694836#M8797</guid>
      <dc:creator>JoeHershman</dc:creator>
      <dc:date>2018-04-27T15:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694837#M8798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;Thanks for your reply. My issue is on sync. Actually, my sync is always successful when I debug my code. But I cannot see the new collected data in the geodatabase in our server when I check &lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;the&lt;/SPAN&gt; data using ArcCatalog after I sync. However, after I edit the new collected data and sync it, it can be seen in the geodatabase. Adding new data uses code&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; FeatureTable.AddFeatureAsync(_feature); &lt;SPAN style="font-family: verdana,geneva,sans-serif;"&gt;editing data uses codes&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; FeatureTable.UpdateFeatureAsync(_feature). I just guess that maybe AddFeatureAsync has some problems which let sync function cannot identify the adding changes, but UpdateFeatureAsync can. Not sure.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 17:16:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694837#M8798</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-04-27T17:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694838#M8799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe, &lt;/P&gt;&lt;P&gt;In addition, I am using our own services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saili&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 17:17:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694838#M8799</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-04-27T17:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694839#M8800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have never observed this behavior, when I create a feature and a bidirectional sync runs it has always pushed that new feature up to the enterprise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am curious if after you have done the add if you can then query the feature table for the new feature.&amp;nbsp; That would indicate that it truly is there.&amp;nbsp; Another thing to check after the add would be the Geodatabase.HasLocalEdits property and the GeodatabaseFeatureTable.GetAddedFeaturesAsync.&amp;nbsp; These would give you some insight as to if the table thinks it has edits&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 18:42:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694839#M8800</guid>
      <dc:creator>JoeHershman</dc:creator>
      <dc:date>2018-04-27T18:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694840#M8801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for your suggestions. I will try the things you recommended. I didn't try GetAddedFeaturesAsync, but after I added some new features, I closed my app, reopen it and the new data was there. And also I even reboot my computer, reopen my app and I still can see and identify&amp;nbsp;my new data in the app, which means the data has been added into my local geodatabase already, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saili&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2018 19:58:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694840#M8801</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-04-30T19:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694841#M8802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe,&lt;/P&gt;&lt;P&gt;I have tried the code you mentioned, "Geodatabase.HasLocalEdits property and the GeodatabaseFeatureTable.GetAddedFeaturesAsync". The following code is the code in my WPF app. I added the "&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;GetAddedFeaturesAsync()&lt;/SPAN&gt; and &lt;SPAN style="font-family: Consolas; font-size: small;"&gt;Geodatabase.HasLocalEdits&lt;/SPAN&gt;" after AddFeatureAsync. &lt;SPAN style="font-family: Consolas; font-size: small;"&gt;GetAddedFeaturesAsync() can return the new feature I added and Geodatabase.HasLocalEdits is True. But the new added feature still cannot be sync to my geodatabase. Is there any other thing I can test it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; Geodatabase.GeodatabaseFeatureTable(0).AddFeatureAsync(_feature)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;Dim&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; r &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;As&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: small; font-family: Consolas;"&gt;FeatureQueryResult&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;Await&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; Geodatabase.GeodatabaseFeatureTable(0).GetAddedFeaturesAsync()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; Geodatabase.HasLocalEdits &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;Then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;End&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;If&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;Saili&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2018 19:51:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694841#M8802</guid>
      <dc:creator>sailiTang</dc:creator>
      <dc:date>2018-05-02T19:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694842#M8803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have me stumped.&amp;nbsp; I have always been able to sync new features.&amp;nbsp; It definitely appears that the geodatabase thinks it has edits, so not sure why when it synced it would not send them.&amp;nbsp; The behavior you see that it then works after an update is equally puzzling.&amp;nbsp; Curious, are you seeing this with multiple DBs you created?&amp;nbsp; Have you tried using a different service and running tests using a replica from that service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something else, do you have a definition expression tied to the feature layer, or is there a definition expression on the layers in the map document used in creating the service?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 16:14:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694842#M8803</guid>
      <dc:creator>JoeHershman</dc:creator>
      <dc:date>2018-05-03T16:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: A synchronization problem on WPF mobile application</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694843#M8804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of setup you have that you use from the runtime? Are the services running in ArcGIS Online or on Enterprise? Is versioning enabled?&lt;BR /&gt;&lt;BR /&gt;Can you show me the exact code that you are using with the sync? If you try to use OfflineMapSyncTask, does that work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2018 06:56:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/a-synchronization-problem-on-wpf-mobile/m-p/694843#M8804</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2018-05-04T06:56:47Z</dc:date>
    </item>
  </channel>
</rss>

