turnpike icon indicating copy to clipboard operation
turnpike copied to clipboard

Go implementation of a WAMP (Web Application Messaging Protocol) client and router

Results 33 turnpike issues
Sort by recently updated
recently updated
newest added

I know this isn't part of the WAMP spec, but it would be a nice feature to support persisting some amount of state between RPC requests. The example I have...

Since the library uses `interface{}` types when deserializing messages, integers are all cast to `float64`. When printing out values in Go, if the value is large enough it prints into...

How can I protect router from malicious subscriber not reading incoming EVENTs? Publisher can't publish new EVENTs when one of subscribers not reading it (and network buffers is filled up)...

I need to access the session ID within a MethodHandler. As far as I can tell, there is no way to do that now. I'm willing to put in work...

Turnpike currently doesn't guarantee the event ordering in the spec. https://github.com/tavendo/WAMP/blob/master/spec/basic.md#ordering-guarantees

bug

Hey guys, I see some activity here, issues PR etc. Due to being forced to use the only available library with go for WAMP and it not working really well,...

If you're trying to vendor this library, godep breaks because it pulls it all the dependencies including the examples and an example uses goncurses which uses cgo.

I am running turnpike on: Architecture: armv7l Byte Order: Little Endian Which is 32Bit. Autobahn.js RequestID differs from turnpikes. I think the problem is: type ID uint Autobahn.js chooses for...

Add Service feature similar to net/rpc registration of service methods. Adds "github.com/mitchellh/mapstructure" as dependency.

I would like to implement something similar to the net/rpc package service registration. It would remove the reflection/type checking in the user code and would allow for WAMP reflection later....

enhancement