Gheric Speiginer

Results 92 comments of Gheric Speiginer

I believe this would be correct: ``` js var resultCallback = function(err, args) { var msg; if (err) { msg = [ WAMP.ERROR, WAMP.CALL, callId, {}, err ]; } else...

The other problem with sending errors is in `handlers[WAMP.ERROR]` ``` js handlers[WAMP.ERROR] = function(session, msg) { var requestType = msg.shift(); var requestId = msg.shift(); var details = msg.shift(); var errorUri...