Hide Forgot
AbstractTransport::readString uses readArray, which then calls readVInt and reads some number of bytes. However, the server writes fixed-size unsigned int in the response => the client reads some rubbish. Note that Java version of HotRod client does not have implemented the readVInt method - it just reads unsigned int under the hood => it works against the server.
Radim Vansa <rvansa> updated the status of jira HRCPP-69 to Closed
Radim Vansa <rvansa> made a comment on jira HRCPP-69 Oops, my fault... I haven't studied the code properly.