Problems sending properties to ThingWorx with C SDK
Hi!
I finally got my first ThingWorx C SDK bound to ThingWorx server but am getting problems with updating the properties.
What I see from the SDK side is that it's sending the struct correctly (booleans, strings, integer) but the properties are not updated to the server.
On each loop step I got the error to application log as many times as the amount of properties:
"An Invalid Property Value Was Sent To [MyThingName Property: [null]"
After these there's an info mention:
"PUSHED PROPERTIES = <full json object based on the values sent>"
and on that JSON is all the values are non-null, correct seeming values (for baseType "BOOLEAN" there's true/false, for "STRING" some text between quotation marks and the INTEGER is non-zero).
Is there some known issues and fixes to this?
Should I change everything on C side to be pushed as string ("TRUE", "3" etc) ?

