Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

COM object with CLSID is either not Valid or not Registered

Status
Not open for further replies.

jl280328

Programmer
Jun 15, 2006
97
US
Hi I have an ASP page that is calling a couple of Dot Net DLLs. It calls the first couple just fine, but when I get to my wrapper DLL I keep getting the following error

"COM object with CLSID {0BD8488D-4D9A-43BB-9F0A-3667DE28AFBC} is either not valid or not registered"

I have GACUTILed and RegAsmed all of them but am still stuck anny suggestions? Thanks
 
Has anyone ever seen this before? I am so in the dark about this I have no idea what to do.
 
In my experience, you will only get that message if the DLL is not registered on the web server. I'm unaware of any other reason that you would get it. Can you actually see the COM component in your component services list?

------------------------------------------------------------------------------------------------------------------------
"Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened."
- Winston Churchill
 
Click on Start, Programs, Component Services. Then you can drill down to look for it from there.

------------------------------------------------------------------------------------------------------------------------
"Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened."
- Winston Churchill
 
This is the only component that i have in the components folder for the website

IISWAM.1__Root__SmartPC

I am getting the error when I try to use a dll, these dlls have been RegAsm and gacutil but still don't seem to register, do I need to drop them in this components folder?
 
If you make a plain .vbs file that uses the DLL does CreateObject fail in the same manner?
 
did you ever get to the bottom of this issue?

BlueCJH
 
I'm trying to view a crystal report with a
CrystalReportViewer (Business Objects 11.5 r 2 and visual studio 2003),

the 1st line in my page load sub fails on

Code:
        Dim mySessionMgr As SessionMgr = New SessionMgr

and the sessionMgr is the object root for this SDK!

it errors with
"COM object with CLSID {44B5A31B-5831-40A2-ACD6-DB62832131DF} is either not valid or not registered"

i think i have all my dlls in the bin directory?

thanks for any help


BlueCJH
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top