SrmLogoutLocale
This method logs
out of the
Site Recovery Manager
server and terminates the current session. It takes the
same managed object reference as for
SrmLoginLocale
, and
should be called with other methods to clean up a connection.
Synopsis
void SrmLogoutLocale( )
C# code to log
out
public void Disconnect() { if (_service != null) { _service.SrmLogoutLocale(_svcRef); _service.Dispose(); _service = null; _sic = null; } }
The Java code is simpler than
the C# code.
Java code to log
out
private static void disconnect() throws Exception { if (isConnected) { srmPort.srmLogoutLocale(_svcRef); } isConnected = false; }