You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I face a strange problem
In my controller when I do lCustomerList := Context.Request.BodyAs<TCustomerList_PutPostReQuest>;
I get this reply { "classname": "EMVCDeserializationException", "items": [], "statuscode": 500, "reasonstring": "error", "message": "Cannot deserialize integer value for ", "data": null }
After investigating, I see that in some fields they are declared as NullableDouble
If my Body have these field as null no problem
if these field values are "real" floats, I mean something like 102.56, no problem
if the value is 102.00 no problem, but if the value is 100 then I get this kind of error message.
Any idea ?
Best regards
The text was updated successfully, but these errors were encountered:
Hi,
I face a strange problem
In my controller when I do lCustomerList := Context.Request.BodyAs<TCustomerList_PutPostReQuest>;
I get this reply
{ "classname": "EMVCDeserializationException", "items": [], "statuscode": 500, "reasonstring": "error", "message": "Cannot deserialize integer value for ", "data": null }
After investigating, I see that in some fields they are declared as NullableDouble
If my Body have these field as null no problem
if these field values are "real" floats, I mean something like 102.56, no problem
if the value is 102.00 no problem, but if the value is 100 then I get this kind of error message.
Any idea ?
Best regards
The text was updated successfully, but these errors were encountered: