C# (CSharp) Org.IdentityConnectors.Framework.Impl.Api.Remote Namespace

Classes

Name Description
RemoteConnectorFacadeImpl Implements all the methods of the facade
RemoteConnectorInfoImpl internal class, public only for unit tests
RemoteConnectorInfoManagerImpl
RemoteFrameworkConnection
RemoteOperationInvocationHandler Invocation handler for all of our operations
RemoteWrappedException RemoteWrappedException wraps every exception which are received from Remote Connector Server.

This Exception is not allowed to use in Connectors!!!

This type of exception is not allowed to be serialise because this exception represents any after deserialization. This code example show how to get the remote stack trace and how to use the same catches to handle the exceptions regardless its origin.

  String stackTrace = null; try { try { facade.GetObject(ObjectClass.ACCOUNT, uid, null); } catch (RemoteWrappedException e) { stackTrace = e.StackTrace; } } catch (Throwable t) { }