redemption dll not registering in windows vista

  • Thread starter Thread starter wlan
  • Start date Start date
W

wlan

Hi,

I'm getting exception when I try to create an instance of RDOSession
interface. Please find the below code:

RDOSession sess = new RDOSession().

This statement throws "{"Retrieving the COM class factory for component with
CLSID {29AB7A12-B531-450E-8F7A-EA94C2F3C05F} failed due to the following
error: 8007007e.":null}" exception.

Even I tried to register it using regsvr32 and it's done sucessfully. After
registration also, its throwing the same error.

Any idea, what is the issue.
 
That is the CLSID for RDOSession. So either something is blocking that
object creation or the CLSID isn't correctly or fully registered or
installed where expected. That error message is usually a
FileNotFoundException.

Check in your registry for that CLSID in HKCR\CLSID\ and make sure it's
correct and points to the corrct location in the InprocServer32 subkey. Try
registering it again, check your permissions to create objects, see if new
works for other applications.
 
Is that 32 or 64 bit Vista? Is you app compiled as a 32 bit or 54 bit app?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top