WampSharp icon indicating copy to clipboard operation
WampSharp copied to clipboard

A C# implementation of WAMP (The Web Application Messaging Protocol)

Results 40 WampSharp issues
Sort by recently updated
recently updated
newest added

First part of #238. Can you take a look at it for whether I'm on the good track with this feature?

I'd like some help implementing a caching layer into the Router as a fallback if the callee is not registered at the moment of an RPC call. The problem is...

Error: > WampSharp.WebSockets.ControlledBinaryWebSocketConnection`1[Newtonsoft.Json.Linq.JToken]|An error occurred while attempting to send a message to remote peer.|EXCEPTION OCCURRED:System.NotImplementedException The method or operation is not implemented. Void WriteValue(System.Decimal) Callee looks like this: ```cs public...

Hi, is it possible to use keyword arguments (see [WAMP specs](https://github.com/wamp-proto/wamp-proto/blob/master/rfc/draft-oberstet-hybi-tavendo-wamp.txt#L2668) with the simple, reflection-based API? It seems to be possible using the raw API, but that is rather cumbersome...

question
caller
callee

I have implemented a router and a client in .net just to see how it works in general. Then I have deployed it to S2 AppService in Azure. The problem...

bug
router

![qerver](https://user-images.githubusercontent.com/10968342/62536404-98b1d400-b856-11e9-8a2b-e02e5836f3b2.JPG) Hi, Can you please let me know what to do in this case?

I am building a mobile application that spawns a docker container running a daemon which accepts rpc commands. I have been looking at WAMP as a way to route a...

Json.NET (Newtonsoft) was a .NET Json morning star, but now wants to pass Baton to System.Text.Json. And although it is not correct, MessagePack for C# seems to be overwhelmingly faster...

I'm wondering if it's possible to access the MetaAPI from within the Router with the WampSharp Meta API Interfaces. As far as I understand the documentation and the code, it...

I'm hosting a WAMP router within a ASP.NET Core project. Within this Router project I'm registering an RPC method like: ` _wampRpcOperationCatalog.Register(new WampMethodTest("test"), registerOptions);` The class WampMethodTest is a descendant...