473,406 Members | 2,293 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,406 software developers and data experts.

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.wordperfect.dll is added to the Bin folder.
After creating the object of Wordperfect.Perfectscript 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 16238
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.com

"Harish" <li********@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.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.wordperfect.dll is added to the Bin folder.
After creating the object of Wordperfect.Perfectscript 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>Component services>Computers>My Computer>DCom
Config>Wordperfect 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.com

"Harish" <li********@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.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.wordperfect.dll is added to the Bin folder.
After creating the object of Wordperfect.Perfectscript 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********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.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>Component services>Computers>My Computer>DCom
| Config>Wordperfect 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.com
| >
| "Harish" <li********@gmail.comwrote in message
| news:11**********************@b28g2000cwb.googlegr oups.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.wordperfect.dll is added to the Bin folder.
| After creating the object of Wordperfect.Perfectscript 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
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...
15
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...
4
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
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. ...
1
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 {...
10
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...
5
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...
6
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...
8
by: deko | last post by:
Which layer should a Factory class go in? DA - Data Access BL - Business Logic UI - User Interface ??
13
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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...
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...

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.