Located within PostTask, we're getting a PropertyDNE on *Task. We have the other service behaving as expected in our REST client but we're now at the point where we'd like to perform updates.
{
"errors":[ {
"code":5002,
"domain":"%ObjectErrors",
"error":"ERROR #5002: Cache error: <PROPERTY DOES NOT EXIST>zPostTask+5^eReferral.REST.Services.1 *Task,%CSP.BinaryStream",
"id":"CacheError",
"params":["<PROPERTY DOES NOT EXIST>zPostTask+5^eReferral.REST.Services.1 *Task,%CSP.BinaryStream"
]
}
],
"summary":"ERROR #5002: Cache error: <PROPERTY DOES NOT EXIST>zPostTask+5^eReferral.REST.Services.1 *Task,%CSP.BinaryStream"
}
%request.Content is a CSP.BinaryStream, what I don't understand is how %request.Content.Task gets populated. I can understand what's getting passed in will directly influence the Content but I don't even see how this Task serialization happens within the service (as I try to debug this).
Here's my input to the service which is JSON valid and appears to be schema valid based on the sample input provided in the readme:
{
"_class": "EnsLib.Workflow.Worklist",
"_id": "1208||ereferraladmin",
"Task": {
"_class": "EnsLib.Workflow.TaskResponse",
"_id": 1208,
"%Action": "$Accept",
"%Priority": 3,
"%UserName": "",
"%UserTitle": "",
"%UserRanking": "",
"%RoleName": "eReferral.WF.ClinicianReview",
"%Subject": "Clinician review required for referral 12",
"%Message": "Some sample message",
"%Actions": "Reviewed,Return",
"%FormTemplate": "",
"%FormFields": "Comments",
"%FormValues": {
},
"%Status": "Unassigned",
"%TaskStatus": {
"_class": "EnsLib.Workflow.TaskStatus",
"Role": {
"_class": "EnsLib.Workflow.RoleDefinition",
"_id": "eReferral.WF.ClinicianReview",
"Name": "eReferral.WF.ClinicianReview",
"Description": "",
"Capacity": 100
},
"AssignedTo": "",
"TimeCreated": "2017-03-15 14:17:00.463",
"TimeCompleted": "",
"SessionId": 1563,
"Source": "EnsLib.Testing.Process",
"ResponseToken": "1564|EREFERRALPKG.EdgeGatewayProduction",
"IsComplete": false,
"Request": {
"_class": "EnsLib.Workflow.TaskRequest",
"_id": 1206,
"%Actions": "Reviewed,Return",
"%Subject": "Clinician review required for referral 12",
"%Message": "Some sample message",
"%Priority": 3,
"%UserName": "",
"%Title": "",
"%TaskHandler": "",
"%Command": "",
"%FormTemplate": "",
"%FormFields": "Comments",
"%FormValues": {
}
}
}
},
"User": {
"_class": "EnsLib.Workflow.UserDefinition",
"_id": "ereferraladmin",
"Name": "ereferraladmin",
"FullName": "ereferral admin",
"IsActive": true
},
"Role": null,
"TimeCreated": "2017-03-15 14:17:00.465",
"IsNew": true,
"Age": "00w 0d 01h 08m 47s"
}
Located within PostTask, we're getting a PropertyDNE on *Task. We have the other service behaving as expected in our REST client but we're now at the point where we'd like to perform updates.
%request.Content is a CSP.BinaryStream, what I don't understand is how %request.Content.Task gets populated. I can understand what's getting passed in will directly influence the Content but I don't even see how this Task serialization happens within the service (as I try to debug this).
Here's my input to the service which is JSON valid and appears to be schema valid based on the sample input provided in the readme: