Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
164 views

Is there a way to get Address Book contact ID's from Sync Services contact ID's?

When getting the modified contacts from Sync Services, through the applyChange:forEntityName:remappedRecordIdentifier:formattedRecord:error method. The IDs in the address book are of the form ...
5
votes
1answer
62 views

MACOSX - When calling -finishSyncing on an ISyncSessionDriver the app makes repeated calls to the delegate

I'm using Sync Services in my application. I'm using the normal way of getting the contacts from the address book (using sync services). I want to prematurely end a sync session if the user decides ...
4
votes
1answer
784 views

Sync Services and iOS

Suppose I already have an OS X app which syncs its data using Sync Services with MobileMe. Is there an way to make my iPhone/iPad app to sync (using MobileMe or not) the data using what I already ...
2
votes
1answer
52 views

Sync Schema Versioning

Now that I have registered my sync services schema, how do I update it to my new model version?
2
votes
2answers
1k views

Can I sync mobile, desktop and web server databases with Sync Framework?

I'm using Sync Framework v1 (which includes Sync Services for ADO.NET v2) and Sync Services for mobile v1. I can sync a SQL Compact Edition database from a mobile device to SQL Express on a desktop ...
1
vote
1answer
64 views

Can Sync Services add a column on the central table?

Is it possible to have Sync Services for ADO.NET read data from a table on multiple devices and insert it into a central SQL Server, having an additional column in the central table with the origin of ...
1
vote
1answer
125 views

Identity Property in Sync Services

can someone help me understand the identity property on an entity attribute? Im thinking of the identity property as a table "key" as in a Relational Database, but I'm guessing this is not it. Im ...
1
vote
1answer
226 views

How to invoke ical sync service?

I have an application that syncs with iCal through the Calendar Store framework. I've noticed that I need to open iCal for the sync service to start and transfer events and tasks added with my ...
0
votes
1answer
118 views

Common Datastructure to synchronize contacts between android and osx

I'm trying to extract contact informations from android devices and synchronize it with the addressbook in osx. Basically a direct synchronization mechanism from device to device without the use of a ...
0
votes
0answers
58 views

How to set the sync identity property programmatically

Im having some trouble with xcode4. The sync identity property of an entity's attribute is not getting persisting when saving my project. I've already filed a bug report. Is there a way that I can do ...
0
votes
0answers
46 views

Cocoa sync service issue when syncing Mail notes

Currently I have a note app. I need the app to sync with Mail notes (stored in Mail.app). However, with a Gmail account setup as IMAP, Mail.app always archives messages I delete into the Gmail>All ...
0
votes
1answer
241 views

How do I access notes in mail.app in mac os x?

What I want to do here is sync notes in my app with notes in mail.app? How can I access them? With the sync service? Any samples there?
0
votes
0answers
303 views

How to access the Mac Address Book Contacts of Exchange Account?

How can we access the contacts of Mac Address Book and the account is Exchange account. I have successfully configured Exchange Account in Address Book. All contacts are shown under the Exchange ...
0
votes
1answer
298 views

Core Data + Sync Services: How to refresh / pull the truth?

Say the user somehow managed to delete my application’s core data store. (Which has been previously synced with sync services to Mobile Me.) How do I tell core data to pull the truth (or to refresh) ...
0
votes
1answer
59 views

Anything similar to Apple's sync services or Microsoft's sync framework?

I'm looking for anything that facilitates syncing local data with some server on the internet. It doesn't have to be as mature as those two and any platform is fine, I'm just looking at different ...
0
votes
1answer
156 views

Cocoa Sync Services exception

I try to program a Cocoa application with Core Data and the Sync Services framework, it works quite well, but once I try to start the sync, i get the following exception: >[NOTE: this exception ...
0
votes
3answers
799 views

Local Data Cache - How do I force an full sync with the database?

I've got a Local Data Cache in my asp.net 3.5 app. I've noticed that once in a while, especially while developing that my local database will get out of sync with the server. I understand why and I ...
0
votes
1answer
716 views

Local Data Cache - How do I refresh the local db when I add fields to remote db?

I'm using a Local Data Cache in an ASP.NET 3.5 environment. I made a change in my main database by adding a new field. I double click on my .SYNC file in my project to startup the Local Data Cache ...
0
votes
1answer
122 views

Sync Services Ado.net define Range Id

is there a way to define a range of id's for insertions in a table in a client DB, using Sync Services for ado.net? does Sync services have any predicted support for such a case? tks
0
votes
1answer
430 views

Sync Services Ado.net conflict resolution

is it possible to solve conflicts on client side with sync services for ado.net? for example, with Client Insert Server Insert, updating client's table id (on client side) , tks
0
votes
1answer
406 views

Sync Services Client and Schema Xcode Project Structure

I'm starting work on a project that will be primarily acting as a Sync Services client. Ideally, the project will have two components: a custom schema bundle and a preference pane. As a first step, ...