Invalid characters for orion Context Broker

280 Views Asked by At

I make some calls to context broker to create elements, but sometimes I get the following error:

{
    "errorCode": {
        "code": "400", 
        "details": "Illegal value for JSON field", 
        "reasonPhrase": "Bad Request"
    }
}

I have done some tests and I have discovered that there are some characters which you get that error.

I found that with "(", ")", "'", ">" , "<",... characters in the value of an attribute return that error.

This is an example of an entity creation that return the error :

(curl localhost:1026/v1/updateContext -s -S --header 'Content-Type: application/json' --header 'Accept: application/json' -d @- | python -mjson.tool) <<EOF
{   
    "contextElements": [
        {   
            "type": "Room",
            "isPattern": "false",
            "id": "Room1",
            "attributes": [
            {   
                "name": "temperature",
                "type": "float",
                "value": "23"
            },
            {   
                "name": "pressure",
                "type": "integer",
                "value": "720"
            },
            {   
                "name": "floor",
                "type": "string",
                "value": "3 (B)"
            }
            ]
        }
    ],
    "updateAction": "APPEND"
}
EOF
1

There are 1 best solutions below

0
On BEST ANSWER

Invalid characters (along with rationale and suggestion to encode them) are explained in this section in the Orion user manual.