wamp-rs icon indicating copy to clipboard operation
wamp-rs copied to clipboard

Implementation of Web Application Messaging Protocol in Rust

Results 7 wamp-rs issues
Sort by recently updated
recently updated
newest added

This crates is somewhat outdated. It uses the deprecated `eventual` crate that was replaced by `futures` and `tokio`. There is a lot of work to be done to shift it...

* Can these IDs overlap? * Is it a problem if they do? * If it is, can we use a uuid instead? https://github.com/dyule/wamp-rs/blob/e6e814935afdbc17e379a10be3565619ffd2658f/src/router/mod.rs#L73-L78

Hi! Thanks for creating this library. I'd like to ask, are there any plans for support of `wss`?

ws-rs supports secure connection, so wamp-rs should :) https://ws-rs.org/guide/ssl

When trying to connect to a websocket server that is not running a panic is produced instead of a proper result. ``` INFO:endpoint: Connecting INFO:ws: Queuing connection to ws://127.0.0.1:8090/ws DEBUG:wamp::client:...

These are some possible wamp authentication methods: https://github.com/crossbario/crossbar-examples/tree/master/authentication I'm interested in something to replace HTTP Basic auth with username+password, mostly with the [cookie](https://github.com/crossbario/crossbar-examples/tree/master/authentication/cookie) method. ws-rs exposes the `Request` through the...

I want to send complex structs over wamp, is there a way to auto (de)serialize them to/from wamp::Value? http://wamp-proto.org/static/rfc/draft-oberstet-hybi-crossbar-wamp.html#serializations >WAMP defines two bindings for message serialization: > - JSON >...