Я использую компонент Microsoft.Office.Interop.Word.dll на C #. Но когда я запускаю его на IIS, я получаю следующую ошибку.
Retrieving the COM class factory for component with
CLSID {000209FF-0000-0000-C000-000000000046} failed
due to the following error: 80070005.
если я разрешаю 32-разрядные приложения на IIS, я получаю следующую ошибку.
”Validation of viewstate MAC failed. If this application is
hosted by a Web Farm or cluster,
ensure that <machineKey> configuration specifies the
same validationKey and validation algorithm.
AutoGenerate cannot be used in a cluster”
Я ввожу следующую строку в файл web.config.
<system.windows.forms jitDebugging="true"/>
если я запустлюсь снова, это выдаст мне ошибку.
Microsoft Word encountered a problem.
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:
Word encountered a problem.
Source Error:
Line 711:
Line 712: //ADDING A NEW DOCUMENT TO THE APPLICATION
Line 713: oWordDoc = oWord.Documents.Add(ref yol, ref oMissing,
ref oFalse, ref oTrue);
Line 714:
Line 715: // SELECT END
Кстати, я использую 64-разрядную версию IIS 7 в Windows Server 2008.
Как я могу решить эту проблему?
Заранее спасибо.