getblank / wango

Golang high available pub/sub and rpc messaging over WebSockets
MIT License
10 stars 2 forks source link

Is this a WAMP router? #1

Open PlkMarudny opened 6 years ago

ivahaev commented 6 years ago

This is not a router, just extended implementation of WAMP v1 protocol. You can create your own router based on this package.

It's implement both client and server as well and should be compatible with WAMP.

PlkMarudny commented 6 years ago

After checking it, I found that it is incompatible with autobahn.js from crossbar.io, and the apparent reason is golang.org/x/net/websocket library used. github.com/gorilla/websocket seems to a solution, at least this is what I found over internet.