我目前正在运行JanusGraph(0.1.1)并且我在尝试通过Websocket连接时遇到了一些困难 - 请注意,Gremlin控制台的工作正常。但/ / p>
我使用Nodejs作为客户端,我已经尝试了所有可用的模块。我可以确认我确实通过了SSL安全性(提供证书本身或使用 rejectUnauthorized 选项)。然后,根据客户端库,我能够测试连接确实打开但似乎没有查询通过。我得到的唯一线索来自' gremlin'模块响应错误401 - 使用与http端点相同的凭据(可以工作)。
有人能指导我通过正确的方式来实现这个Websocket连接吗?我附上了两个不同库的例子。
// With Gremlin module
const Gremlin = require("gremlin");
const client = Gremlin.createClient(<my-port>, '<my-url>', {
path: '/',
user: '<my-user>',
password: '<my-password>',
ssl: true,
rejectUnauthorized: false,
session: true,
});
client.execute('def graph=ConfiguredGraphFactory.open("test3")', { }, (err, results) => {
if (err) {
return console.error(err)
}
console.log(results);
});
// With Ws module
const WebSocket = require('ws');
var fs = require('fs');
const ws = new WebSocket('wss://<my-url>:<my-port>', {
ca: fs.readFileSync("./ssl.cert"), // required to get passed the leaf certificate error
extraHeaders: {
Authorization: 'Basic ' + new Buffer('<my-user>:<my-password>').toString('base64')
},
perMessageDeflate: false,
ssl: true,
json: true,
strictSSL: false,
// rejectUnauthorized: false, // does not work - needs the certificate
});
ws.onopen = function (event) {
console.log('SSL OK: ', event.target._sender._socket.authorized);
ws.send("{'gremlin': 'def graph=ConfiguredGraphFactory.open(\"test3\");graph.addVertex(label,\"some vertex\");graph.tx().commit();'}", function(res){
console.log(res);
ws.close();
});
};