I have a Wizard created server, no changes, and a desktop client app. The servers is writing to TPS files in the same folder as the server and the client is using a copy of the dct with the database driver set to memory. When I add a record to the client and then click 'Start', on the ServerSync window, syncing runs and tells me 1 record was sent. I can see in the log on the server that it is receiving information from the client. However, looking at the TPS file on the server side the record wasn't added.
Is there some obvious things I can check and then maybe some tips on how to trace this down if the obvious doesn't work?
Below is the JSON the server log is showing.
{
"token" : "",
"table" : "objects",
"action" : "sync",
"everythingafter" : 0,
"objects" : [
{
"guid" : "IC0CHF4CO6TRYWSD",
"ts" : 1466425346200,
"sts" : 0,
"dts" : 0,
"description" : "Obj1",
"retired" : "",
"retireddate" : 0,
"dateadded" : 78702,
"whoadded" : "",
"searchstring" : ""
},
{
"guid" : "FOTSTU5O6A6VY4JY",
"ts" : 1466425871045,
"sts" : 0,
"dts" : 0,
"description" : "Obj2",
"retired" : "",
"retireddate" : 78531,
"dateadded" : 78702,
"whoadded" : "me",
"searchstring" : "me"
}
]
}