FAILURE answer from kie-server (using kie-server-showcase and business-central-workbench-showcase)

153 Views Asked by At

I am testing business-central with kie-server both running in docker, both are "showcase" versions. I've made project in business-central with "Cow" model (pic) and decision table (pic) for it. Build & Deploy is successful.

After sending json with request body

{
    "commands:": [
        {
            "insert": {
                "object": {
                    "Cow": {
                        "name": "cow1",
                        "age": 11
                    }
                },
                "out-identifier": "Cow",
                "return-object": true
            }
        },
        {
            "fire-all-rules": {}
        }
    ]
}

to endpoint http://localhost:8180/kie-server/services/rest/server/containers/instances/Cow

receiving an error:

{
    "type": "FAILURE",
    "msg": "Bad request, no commands to be executed - either wrong format or no data",
    "result": null
}

Is there anything that I am doing wrong? Why my request doesn't proceed?

1

There are 1 best solutions below

1
On

I think in your request you need the canonical class name com.axaukraine.Cow, but you are using just the simple name Cow.

{
    "commands:": [
        {
            "insert": {
                "object": {
                    "com.axaukraine.Cow": {
                        "name": "cow1",
                        "age": 11
                    }
                },
                "out-identifier": "Cow",
                "return-object": true
            }
        },
        {
            "fire-all-rules": {}
        }
    ]
}