473,405 Members | 2,349 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

C#.net error in COM object with CLSID

i have tried running the csharpsite in my Microsoft Visual C#.net and after i
hit the run button i keep getting the same error which is :
Server Error in '/csharpsite' Application
COM object with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not
valid or not registered.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: COM object
with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not valid or not
registered.

Can someone please help out with this.

Thank You in Advanced
Sep 21 '05 #1
4 5336
Hi Ahmed,

a few things to check out for such errors.

- Is the COM dll registered on the machine, if not register it ASAP.
- In case you are recompiling the COM dll and then using it, make sure it
has the same GUID or at the least, re-register it.
- How have you created the RCW? Use VS.NET to create the Interop wrapper
instead of tlbimp.exe.

HTH.

"Ahmed" wrote:
i have tried running the csharpsite in my Microsoft Visual C#.net and after i
hit the run button i keep getting the same error which is :
Server Error in '/csharpsite' Application
COM object with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not
valid or not registered.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: COM object
with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not valid or not
registered.

Can someone please help out with this.

Thank You in Advanced

Sep 22 '05 #2
There is a COM component that is required to run the application you want.
The application is attempting to create an instance of a COM component with
the CLSID of {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F}it has not been
registered on you system. This will probably mean that you have not
installed all the software required to run the application.

HTH

Ollie Riches
"Ahmed" <Ah***@discussions.microsoft.com> wrote in message
news:E8**********************************@microsof t.com...
i have tried running the csharpsite in my Microsoft Visual C#.net and after
i
hit the run button i keep getting the same error which is :
Server Error in '/csharpsite' Application
COM object with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not
valid or not registered.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about
the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: COM object
with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not valid or
not
registered.

Can someone please help out with this.

Thank You in Advanced

Sep 22 '05 #3
Hello Kaustav thank you for replying. I don't know what your trying to tell
me i looked for the com dll but i couldn't located it can you help with what
i need to look for on a step by step process if you don't mind
Thank You in Advanced

"Kaustav" wrote:
Hi Ahmed,

a few things to check out for such errors.

- Is the COM dll registered on the machine, if not register it ASAP.
- In case you are recompiling the COM dll and then using it, make sure it
has the same GUID or at the least, re-register it.
- How have you created the RCW? Use VS.NET to create the Interop wrapper
instead of tlbimp.exe.

HTH.

"Ahmed" wrote:
i have tried running the csharpsite in my Microsoft Visual C#.net and after i
hit the run button i keep getting the same error which is :
Server Error in '/csharpsite' Application
COM object with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not
valid or not registered.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: COM object
with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not valid or not
registered.

Can someone please help out with this.

Thank You in Advanced

Sep 22 '05 #4
Hello Ollie and thanks for replying. I just wanted to know how can i located
the COM component and how do i do it. Can you help me
Thank You in Advanced

"Ollie Riches" wrote:
There is a COM component that is required to run the application you want.
The application is attempting to create an instance of a COM component with
the CLSID of {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F}it has not been
registered on you system. This will probably mean that you have not
installed all the software required to run the application.

HTH

Ollie Riches
"Ahmed" <Ah***@discussions.microsoft.com> wrote in message
news:E8**********************************@microsof t.com...
i have tried running the csharpsite in my Microsoft Visual C#.net and after
i
hit the run button i keep getting the same error which is :
Server Error in '/csharpsite' Application
COM object with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not
valid or not registered.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about
the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: COM object
with CLSID {3CFCB90E-B0B0-11D2-8D8B-00C04F79EE8F} is either not valid or
not
registered.

Can someone please help out with this.

Thank You in Advanced


Sep 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: murrayatuptowngallery | last post by:
I have looked at some mouseover/ sound object scripts and can't get them to work. Most were more complex than needed and introduced several new parameters for me. I found a simple pair of html...
4
by: Shiraz | last post by:
Hi I just made an installer package for an application in .NET which also uses COM dlls. It seems to work fine on my machine but when tried it on a co-worker's machine, the application installs,...
4
by: Ahmed | last post by:
i have tried running the csharpsite in my Microsoft Visual C#.net and after i hit the run button i keep getting the same error which is : Server Error in '/csharpsite' Application COM object with...
0
by: Dominator.Legend | last post by:
Hallow every one, i have a problem using .net user control with the <OBJECT> tag, I made a normal user control in C#, then i use the regasm to register it, also i use the option regfile to...
0
by: Nonee | last post by:
Hello- I have a form with the mediaplayer referenced to play mp3's and avi's and I believe that is what is causing the problem. I am not sure, but I am hoping. Anyway, I "published" the vb.net...
0
by: Nonee | last post by:
Anyone, anyone? : ) Hello- I have a form with the mediaplayer referenced to play mp3's and avi's and I believe that is what is causing the problem. I am not sure, but I am hoping. ...
4
by: Praveen Chandra | last post by:
Hi, I just wanted to put down the issue with more detailed information so that you can help us get to the right Microsoft resource for a solution! Here is the problem description... Our...
9
by: DKn | last post by:
Hi , I am having a .Net Activex control. I have done coding for COMRegistering and Unregistereing in C#.Net. The code is follows.. static void ComRegister(Type t) { ...
0
by: DKn | last post by:
Hi , I am having a .Net Activex control. I have done coding for COMRegistering and Unregistereing in C#.Net. The code is follows.. static void ComRegister(Type t) { ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.