Google Analytics İzleme

20 Şubat 2017

.Net ve SAP - "Class not registered ..." hatası


.Net 4.0 ile 32 bit SAP Interop dll'leri ile console uygulaması geliştirince aşağıdaki hata vermektedir. Bu hata console uygulamasının 64 bit olup, 32 bitlik sap interop dll'lerine erişememisindendir.
Bunun dolayı console uygulamasını x86 türü yapıp build etmeliyiz.

Çıkan hata mesajı:

Retrieving the COM class factory for component with CLSID {B24944D6-1501-11CF-8981-0000E8A49FA0} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).


--
One standard failure mode is running this on a 64-bit operating system. This is 32-bit unmanaged code, you would indeed get the 'class not registered' exception. Project + Properties, Build tab, change Platform Target to x86.
--

Alıntı:
http://stackoverflow.com/questions/4021796/error-80040154-class-not-registered-exception-when-initializing-vcprojectengin
http://stackoverflow.com/questions/17985653/class-not-registered-error

Hiç yorum yok: