Hello,
I've been using cppwamp for a few months and I've been quite happy with the implementation so far. However, I've noticed that there is no easy way to extract URI and argumants from wamp::error::Failure instance. Surely what() method encodes all info in a string, but I want to propagate Failure URI and parameters to my application, and it seems silly to parse the string returned by what(). Am I overlooking something?
try{
}
catch(wamp::error::Failure& e){
// how do I get URI, args, and kwargs from e?
}
Regards,
Rosa Lisin