I'm trying to store a text that contains special characters like (ç,é,è,à ...) in neo4j from java using the REST api but i'm getting the following error :
{"results":[],
"errors":[{"code":"Neo.ClientError.Request.InvalidFormat","message":"Unable to deserialize request: Invalid UTF-8 start byte 0xfd\n at [Source: HttpInputOverHTTP@b15eccb; line: 1, column: 1237]"}]}
- I already setted the charset to UTF-8 in the header of my request
- I did also add the following line to the neo4j.conf file , section JVM parameters :
dbms.jvm.additional=-Dfile.encoding=UTF8
but this still getting the same error.
does anyone have a solution for this ?