Call DMN rule from Postman using a "Date" field

no difference

is there a way to increase the level of debug output in the logs? more verbose??

can you share the error logs.??

For range, you should use [65.00..80.00] . You have missed the open/close brackets.

Try changing the log level.

Can you provide your payload message???

@airazabal, i have fixed one more issue in your DMN, the dateformat specified was wrong. I have modified it.

The dateFormat should match the pattern yyyy-MM-ddTHH:mm:ss

Try this DMN:

Market_Validation_Decision.dmn (2.8 KB)

catalina.2019-02-05.log (53.6 KB)
payload message:
{“variables”:
{
“acct_safekeep”:{“value”:“STT”, “type”:“String”},
“share_price”:{“value”:“65.00”, “type”:“Double”},
“trade_date”:{“value”:“2019-01-31T10:11:00.000+0100”, “type”:“Date”}
}
}

Have you tried the dmn which I gave you last?

Is that working?

no
same issue

Try this dmn in the post 24

if you try “trade_date”:{“value”:“2019-01-31T10:11:00”, “type”:“Date”}
it fails with invalid date conversion
looks like it needs to be: “trade_date”:{“value”:“2019-01-31T10:11:00.000+0100”, “type”:“Date”}
but then it fails with the other error:
{
“type”: “RestException”,
“message”: “Cannot evaluate decision f3af1fcd-2955-11e9-ba38-0242ac110002: Exception while evaluating decision with key ‘null’”
}

whats the rest api url that youre invoking?

http://localhost:8080/engine-rest/decision-definition/745a1ceb-2961-11e9-ba38-0242ac110002/evaluate

I hope decision-definition id of your process looks to be this format. Can you check and invoke rest api as like this definitionkey?

image

image