How to get the server side exception stack trace

if an exception occurred on the server, how can i get the server-side exception stack trace ?

I should be streamed back to the client automatically, and be available as a separate property on the ServerException class (or descendant) that gets thrown, client side.

thanks, after looking into the property of ServerException class, the stack trace is streamed back via the ServerStackTrace property, but the type of exception seems get lost.

Hello

Unfortunately this is the tradeout of supporting different platforms, not only .NET. There is no clear way to save type information on .NET, for example, for exception of type System.NotImplementedException and to load it later on iOS platform.
Take a look at the MegaDemo shipped with RemObjects SDK. There is a sample of a custom exception definition that can be deserialized without loss of the exception type information.

Regards