Balázs Somos
Balázs Somos
I think this would remain backwards compatible: ``` protected static WampException ConvertExceptionToRuntimeException(Exception exception) { if (exception is OperationCanceledException) { return new WampRpcCanceledException(null, exception.Message, null, exception.Message, exception); } return new WampRpcRuntimeException(null,...
Hmm, good point, I see... As long as Wamp intends to provide security through such features, it is not possible to support applications that do not need such features (like...
We wanted to have the server layer between our frontend and backend the thinnest possible in our application and avoid implementing a function for every callee with an exception handling....