0

When testing my rules on the Business Rules service on Bluemix, I get the following error:

"Unable to run test Error when extracting the ruleset parameter value from the request. Unexpected end-of-input: expected close marker for OBJECT (from [Source: com.ibm.ws.webcontainer.srt.SRTInputStream@1d255d3f; line: 1, column: 0]) at [Source: com.ibm.ws.webcontainer.srt.SRTInputStream@1d255d3f; line: 8, column: 123]"

z_blue
  • 350
  • 3
  • 20

1 Answers1

0

I had misconstructed the input parameter (it was missing the closing brace):

{
    "foo": {
        "name": "foo",
        "id": "bar"
    }

Once I added the closing brace I could run the test successfully.

z_blue
  • 350
  • 3
  • 20