I am a .NET developer using C#. I am trying to connect to QC Version 11 server (64bit) but it's throwing an exception (Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))) when I call .InitConnectionEx method. I have installed QC client 11 on my development machine. My development machine is also 64 bit (Windows 7/2008). It looks like some QC dll is not getting registered during client installation on the local machine. I have written the below C# code for connection but I am receiving the issue on line 2.
TDConnection tdConnect = new TDConnection();
tdConnect.InitConnectionEx("http://192.168.1.10:8181/qcbin/");
tdConnect.ConnectProjectEx("DEFAULT", "Test", "admin", "admin");
Please help me to find out solution on priority.