Elad Zelingher

Results 109 comments of Elad Zelingher

I guess you want something like this: ``` csharp var proxy = channel.RealmProxy.Services.GetPublisherProxy(); proxy.AssetAdded += MyEvent; ``` (There is no need to call a subscribe method, this will happen implicitly...

Yeah, you should not put events in the proxy interfaces - the library doesn't know how to handle them. What kind of "Ignore" behavior do you expect to happen? I...

Hi Michael, I agree this is a feature we'd like to have in WampSharp. However, for now, I don't want to design such a feature, since I don't have much...

If you can write a local simple repro (i.e. does not involve Azure), then I might be able to investigate this. @bigbearzhu do you guys run on Azure? Did you...

What is `DssConnectorWebSocketTransport`? Please add a full repro. Preferably, upload it to [https://gist.github.com](https://gist.github.com). Elad

Can't reproduce. Here's [an attempt](https://gist.github.com/darkl/8546e3abfce64f43b635574e9708e7f0). Client eventually crashes with `System.Net.Sockets.SocketException (10055): An operation on a socket could not be performed because the system lacked sufficient buffer space or because a...

In turns out that this is an issue with IIS/IIS Express, see [here](https://github.com/aspnet/AspNetCore/issues/2464). See also #279.

You'll have to wait several minutes for the server to detect the disconnected clients, see [this comment](https://github.com/aspnet/AspNetCore/issues/2464#issuecomment-484193415).

This is a bug for [this library](https://github.com/NZSmartie/Newtonsoft.Json.Cbor) which seems not to be maintained, but maybe they accept pull requests. Elad

It's not that simple. WampSharp needs the serialization library to support partial deserialization (or "deserialization by parts"), see my comments for [this issue](https://github.com/Code-Sharp/WampSharp/issues/316). That's one obstacle. The second obstacle is...