WampSharp
WampSharp copied to clipboard
A C# implementation of WAMP (The Web Application Messaging Protocol)
Hi, I originally posted this on the crossbario github site, but seems that this is the correct place to post since it concerns wampsharp primarîly: I am quite new to...
I had a scenario where there was a transport error attempting to send the return value of an RPC to the caller. The error was short lived/transient, and it did...
Is it possible to pass extra data from client to the server in HELLO message? I need to send other than standard "roles". Third party server accepts HELLO message that...
We should run unit tests for Xamarin.Android and Xamarin.iOS in our builds. The iOS tests need some modifications in order to pass (since Xamarin does not support runtime code generation)....
Hi, In our apps based on WampSharp, we want to make use of progressive calls and cancellation. In fact we want to use the cold observable paradigm, and think that...
Logging
There should be logs in the framework. A logging framework (such as log4net) should be considered.
Hi! I have successfully implemented a WampSessionAuthenticator. As i understand the Authentication Process only happens when the connection open. What about if my token expires 10 minutes after the connection...
This is the stack trace. The JTokenMessageParser.Parse does capture exception and log it, and, rethrow it. However, the callers to the function don't capture the exception and handle it. So...
Suppose I have a situation where I need to keep a client-side object up to date with a server-side object. The object is large (say 100KB). I intended to subscribe...
I would like an interface that combines events and methods like this: ``` csharp public interface IAssetManager { public void Add(AssetDto asset); // WampMethod public event Action AssetAdded; // WampEvent...