Reputation: 6741
I've downloaded apache-tinkerpop-gremlin-server-3.4.4 and trying to connect it from gremlin.net.
I'm getting an error:
ServerError: Could not deserialize the JSON value as required. Nested exception: org.apache.tinkerpop.shaded.jackson.core.JsonParseException: Unexpected character ('@' (code 64))
I think the server needs to be configured to use Graphson 2.0 as mentioned in the documentation but I couldn't find how to do so.
Any help on configuring tinkerpop gremlin server to use Graphson 2.0 will be appriciated.
Upvotes: 0
Views: 247
Reputation: 6741
Adding:
- { className: org.apache.tinkerpop.gremlin.driver.ser.GraphSONMessageSerializerV2d0, config: { ioRegistries: [org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerIoRegistryV2d0] }} # application/json
In conf/gremlin-server.yaml under 'serializers' section did the trick for me
Upvotes: 1