Google Analytics İzleme

23 Haziran 2013

SAP .Net Connector - Bağlantıyı kapatma

.Net tarafından SAP'ye yapılan RFC bağlantılarının kapanmasını sağlamak için ilgili bağlantı sınıfları Garbage Collector'dan kaldırılmalı veya RfcDestinationManager.UnregisterDestinationConfiguration(objConnectionConfig); komutu kaldırma işlemi yapılmalıdır.

...
Try running the garbage collector on the object to release unused object.

GC.Collect();
GC.WaitForPendingFinalizers();
...

...
To register a destination use: RfcDestinationManager.RegisterDestinationConfiguration(objConnectionConfig);
//where objConnectionConfig is the implementation of interface IDestinationConfiguration
I also faced this issue finally use Unregister destination like this.
RfcDestinationManager.UnregisterDestinationConfiguration(objConnectionConfig);
Hope this helps.
...

Kaynak:
http://scn.sap.com/thread/1908186

Hiç yorum yok: