473,765 Members | 2,081 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Retrieving the COM class factory for component with CLSID {C0E10006-0004-1300-0001-C0E1C0E1C0E1} failed due to the following error: 80080005

I am buiding an application in ASP.Net 2.0 with C#. After installing
corel wordperfect i am adding the reference into the application. Afetr
adding reference interop.wordper fect.dll is added to the Bin folder.
After creating the object of Wordperfect.Per fectscript i am opening the
wordperfect file and then run the wordperfect macro. In development
version the application is running without any error. If i publish the
website on local system and run the application after creating virtual
directory it gives me errror:

Retrieving the COM class factory for component with CLSID
{C0E10006-0004-1300-0001-C0E1C0E1C0E1} failed due to the following
error: 80080005

Suggest me what i have to do for running the application successfully.

Aug 19 '06 #1
3 16258
Harish,

Did you install Corel Wordperfect on the production machine? Just
installing the interop wrappers is not enough, you have to install the COM
components as well.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Harish" <li********@gma il.comwrote in message
news:11******** **************@ b28g2000cwb.goo glegroups.com.. .
>I am buiding an application in ASP.Net 2.0 with C#. After installing
corel wordperfect i am adding the reference into the application. Afetr
adding reference interop.wordper fect.dll is added to the Bin folder.
After creating the object of Wordperfect.Per fectscript i am opening the
wordperfect file and then run the wordperfect macro. In development
version the application is running without any error. If i publish the
website on local system and run the application after creating virtual
directory it gives me errror:

Retrieving the COM class factory for component with CLSID
{C0E10006-0004-1300-0001-C0E1C0E1C0E1} failed due to the following
error: 80080005

Suggest me what i have to do for running the application successfully.

Aug 19 '06 #2
Thanks for reponse. But the problem comes on my local machine also.
This will comes when i publish the website. Not comes when run through
the development vesion.

It is resolved now at some extent. For this i have to do some DCOM
Configuratiion.
Run>dcomcnfg>Co mponent services>Comput ers>My Computer>DCom
Config>Wordperf ect X3 document
Right click on it click on properties Change the Identity from the
launching user to the interactive user.

The application runs now.

Is it possible to run the same macro which is at particular folder to
run on different wordperfect document?
As it is a web application and at a time different user use the
application. And same macro run on the different wordperfect document.
Now Macro run on currently open document.

Suggest me what i have to do.
....Harish

Nicholas Paldino [.NET/C# MVP] wrote:
Harish,

Did you install Corel Wordperfect on the production machine? Just
installing the interop wrappers is not enough, you have to install the COM
components as well.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Harish" <li********@gma il.comwrote in message
news:11******** **************@ b28g2000cwb.goo glegroups.com.. .
I am buiding an application in ASP.Net 2.0 with C#. After installing
corel wordperfect i am adding the reference into the application. Afetr
adding reference interop.wordper fect.dll is added to the Bin folder.
After creating the object of Wordperfect.Per fectscript i am opening the
wordperfect file and then run the wordperfect macro. In development
version the application is running without any error. If i publish the
website on local system and run the application after creating virtual
directory it gives me errror:

Retrieving the COM class factory for component with CLSID
{C0E10006-0004-1300-0001-C0E1C0E1C0E1} failed due to the following
error: 80080005

Suggest me what i have to do for running the application successfully.
Aug 21 '06 #3
Web applications and end user productivity tools (like Office, wordperfect
etc) aren't designed to be used in tandem (through DCOM or whatever), the
first is meant to run in non interactive users context, the latter is used
to run from a interactive logon session.
Changing the identity to the interactive user won't be of any help if there
is no interactive user logged on.
One suggestion, forget about this, it's not designed to work correctly in
such context.

Willy.
"Harish" <li********@gma il.comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
| Thanks for reponse. But the problem comes on my local machine also.
| This will comes when i publish the website. Not comes when run through
| the development vesion.
|
| It is resolved now at some extent. For this i have to do some DCOM
| Configuratiion.
| Run>dcomcnfg>Co mponent services>Comput ers>My Computer>DCom
| Config>Wordperf ect X3 document
| Right click on it click on properties Change the Identity from the
| launching user to the interactive user.
|
| The application runs now.
|
| Is it possible to run the same macro which is at particular folder to
| run on different wordperfect document?
| As it is a web application and at a time different user use the
| application. And same macro run on the different wordperfect document.
| Now Macro run on currently open document.
|
| Suggest me what i have to do.
|
|
| ...Harish
|
|
|
| Nicholas Paldino [.NET/C# MVP] wrote:
| Harish,
| >
| Did you install Corel Wordperfect on the production machine? Just
| installing the interop wrappers is not enough, you have to install the
COM
| components as well.
| >
| Hope this helps.
| >
| >
| --
| - Nicholas Paldino [.NET/C# MVP]
| - mv*@spam.guard. caspershouse.co m
| >
| "Harish" <li********@gma il.comwrote in message
| news:11******** **************@ b28g2000cwb.goo glegroups.com.. .
| I am buiding an application in ASP.Net 2.0 with C#. After installing
| corel wordperfect i am adding the reference into the application.
Afetr
| adding reference interop.wordper fect.dll is added to the Bin folder.
| After creating the object of Wordperfect.Per fectscript i am opening
the
| wordperfect file and then run the wordperfect macro. In development
| version the application is running without any error. If i publish the
| website on local system and run the application after creating virtual
| directory it gives me errror:
|
| Retrieving the COM class factory for component with CLSID
| {C0E10006-0004-1300-0001-C0E1C0E1C0E1} failed due to the following
| error: 80080005
|
| Suggest me what i have to do for running the application successfully.
|
|
Aug 21 '06 #4

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

Similar topics

4
3374
by: ac | last post by:
Hi, I have to customize a component (in this case Windows Media Player) so that a circular window is shown upon the player. That is, suppose you have a movie playing (in the ordinary rectangle window), I'd like to create some sort of mask which only allows to watch inside the circle (as if someone is viewing through a peephole or spyhole..) Is there any possible way to do this? This is targetted to WMP, but maybe it can be done with...
15
2293
by: Thomas Christmann | last post by:
Hi! I have a rather special question here. I'd like to write a wrapper for a .NET assembly, and register that on my server so that the people on my server call my assembly instead of the standard .NET assembly. Reason is that I want to include some additional security checks in my assembly, to prevent everybody from the calling the .NET assembly unchecked. So, writing the wrapper is no problem, but I'm not sure how/if it is possible to...
4
2188
by: wow | last post by:
Hi, Have a problem at hand..... I have a text file as follows: AA : class_a BB : class_b ............ XX : class_x
17
4812
by: Aguilar, James | last post by:
My previous example used the concept of a Shape class heirarchy, so I will continue with that. Suppose I have something like fifty different shapes, and I am trying to instantiate one of them. The trick is, the instatiation will be based on a string with the exact same name as the type that I am trying to instantiate. Obviously, writing a fifty element long switch statement is an inferior solution. So, how can I instantiate based on...
1
3000
by: Patrick Stinson | last post by:
I am trying to create a way to register static members of a **class**, not an object, for making an object factory. The main thing I want is to be able to make a call like class MyClass { public: MyClass *factory(); }; register(MyClass);
10
3300
by: Ray Z | last post by:
hi, there I build a Class Library, I write a class A to implement interface IA. The problem is when I give the dll file to others, thet can get all information about not only IA, but also A. They can even see my protected members of class A. How could I hide these informations about class A, just give them the interface informations. thanks.
5
3675
by: Michael McCarthy | last post by:
I want to develop plugin support for a system.montitor module I am working on. A lot of the modules will do mostly interop stuff for an older system, but I want to use it myself as well to monitor event logs and other things as I think of them... I've seen two ways of doing this, the abstract class factory, or the interface... the module logic is fairly simple, watch something -> get the result -> notify / fix / and or log it... I've...
6
2258
by: Ian Williamson | last post by:
Greetings, My company has an ASP.NET based enterprise product that is undergoing some changes and I need some community input to help solve a problem. In the current implementation, any given installation of the product supports only one database at a time. The server/db information is stored in the registry on the computer hosting the com+ based middle tier. We are now moving to a solution which supports multiple databases. That...
8
4813
by: deko | last post by:
Which layer should a Factory class go in? DA - Data Access BL - Business Logic UI - User Interface ??
13
2426
by: docschnipp | last post by:
Hi, I have a bunch of object derived from the same base class. They all share the same constructor with some parameters. Now, instead of using a large switch() statement where I call every single Object by itself, I'd like to assign a reference to the class type and call it later without knowing the derived type. Example:
0
9568
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9398
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10007
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9951
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8831
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7375
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5275
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2805
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.