Read/Amend of MS words in C# (ASP.NET)
-
Hi guys i am using Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application(); to read my MS word document. When i run the program in my own pc. The application work perfectly. Howevr when i move up to server or access the programme from another pc i recieve an error msg below : System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005. i have try google it but still can't seem to work. Any idea or solution from u guys will help Thanks
KaKaShi HaTaKe
-
Hi guys i am using Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application(); to read my MS word document. When i run the program in my own pc. The application work perfectly. Howevr when i move up to server or access the programme from another pc i recieve an error msg below : System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005. i have try google it but still can't seem to work. Any idea or solution from u guys will help Thanks
KaKaShi HaTaKe
Its look like permission related problem, Check your folder and file's permission.
Viral My Site Tips & Tracks
-
Its look like permission related problem, Check your folder and file's permission.
Viral My Site Tips & Tracks
Yup i checked. No issue.
KaKaShi HaTaKe
-
Hi guys i am using Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application(); to read my MS word document. When i run the program in my own pc. The application work perfectly. Howevr when i move up to server or access the programme from another pc i recieve an error msg below : System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005. i have try google it but still can't seem to work. Any idea or solution from u guys will help Thanks
KaKaShi HaTaKe
Interop services requires component to be installed in the machine where it is calling. Does your server have Microsoft office installed ?? Also are you working on asp.net and calling Interop.Word?
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Microsoft Bing MAP using Javascript
CLR objects in SQL Server 2005
Uncommon C# Keywords/xml> -
Interop services requires component to be installed in the machine where it is calling. Does your server have Microsoft office installed ?? Also are you working on asp.net and calling Interop.Word?
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Microsoft Bing MAP using Javascript
CLR objects in SQL Server 2005
Uncommon C# Keywords/xml>Yap i have yes i am working on ASP.NET and calling interop.word
KaKaShi HaTaKe
-
Hi guys i am using Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application(); to read my MS word document. When i run the program in my own pc. The application work perfectly. Howevr when i move up to server or access the programme from another pc i recieve an error msg below : System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005. i have try google it but still can't seem to work. Any idea or solution from u guys will help Thanks
KaKaShi HaTaKe
As someone said, this is a permissions error. And, it plainly is, it says so in the exception. I suggest you read my article on how to use google. If you followed the advice in that article and googled the error, you'd have found this[^].
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
As someone said, this is a permissions error. And, it plainly is, it says so in the exception. I suggest you read my article on how to use google. If you followed the advice in that article and googled the error, you'd have found this[^].
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
yup i gotten this doc and followed it but it still didn't work. I can run from my pc but i can't run from other computer which access my webpage in my own pc. I already set all the permission for user still have the same issue.
KaKaShi HaTaKe
-
yup i gotten this doc and followed it but it still didn't work. I can run from my pc but i can't run from other computer which access my webpage in my own pc. I already set all the permission for user still have the same issue.
KaKaShi HaTaKe
I'm sorry, but you're wrong. The exception says it's a permissions issue, so you've plainly not fixed it. You realise the ASP.NET process runs under the ASPNET account, not the one you logged in as ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I'm sorry, but you're wrong. The exception says it's a permissions issue, so you've plainly not fixed it. You realise the ASP.NET process runs under the ASPNET account, not the one you logged in as ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Yup that i have set it too. ASPNET acc but problem still same
KaKaShi HaTaKe
-
Yup that i have set it too. ASPNET acc but problem still same
KaKaShi HaTaKe
sorry bro now is this error System.Runtime.InteropServices.COMException (0x80080005): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80080005
KaKaShi HaTaKe
-
Yup that i have set it too. ASPNET acc but problem still same
KaKaShi HaTaKe
Well, according to google, everyone here, and the text of your error message, you have a permissions issue.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Well, according to google, everyone here, and the text of your error message, you have a permissions issue.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
huh strange but i already did what ever u guys have mentioned. just can't seem to solve the issue. i follew exactly the ink u provided me
KaKaShi HaTaKe