JAXB failure trying to convert typed value

JAXB failure trying to convert typed value

We are getting below error
Error: JAXB failure trying to convert typed value TypedValue[it=568,v={4f3e9da2-b3db-4ef7-aed4-49b515134244@14562,{TypedValue[it=11996,v={<null>,LA82XC305,2,1,Pass,<null>,<null>,,,tw798708,2016-09-22 17:30:34.54,tw798708,2016-09-22 17:30:34.54}]}}] to java class com.appiancorp.common.EntityData

Using "write to multiple data store entity” smart service for db updates. Node get stuck for few instances.
Process gets resumed by restarting the node. Any help would be appreciated.

OriginalPostID-236523

  Discussion posts and replies are publicly visible

Parents
  • The "Value To Store" parameter for Write to Multiple Data store smart service is of type - List of EntityData.
    From your error, it seems that you are not passing an array of EntityData.
    You are instead passing a single EntityData.
    Try enclosing it in parentheses.
    eg:
    {
    {entity: cons!MY_ENTITY, data: pv!someCDT},
    {entity: cons!MY_ENTITY2, data; pv!someCDT2}
    }
Reply
  • The "Value To Store" parameter for Write to Multiple Data store smart service is of type - List of EntityData.
    From your error, it seems that you are not passing an array of EntityData.
    You are instead passing a single EntityData.
    Try enclosing it in parentheses.
    eg:
    {
    {entity: cons!MY_ENTITY, data: pv!someCDT},
    {entity: cons!MY_ENTITY2, data; pv!someCDT2}
    }
Children
No Data