Error : System.Runtime.InteropServices.COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC
Getting following error:
System.Runtime.InteropServices.COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC
at Microsoft.Office.Interop.Excel.WorkbookClass.SaveAs(Object Filename, Object FileFormat, Object Password, Object WriteResPassword, Object ReadOnlyRecommended, Object CreateBackup, XlSaveAsAccessMode AccessMode, Object ConflictResolution, Object AddToMru, Object TextCodepage, Object TextVisualLayout, Object Local)
Officially Microsoft Office 2003 Interop is not supported on Windows server 2008 by Microsoft.
But after a lot of permutations & combinations with the code and search, we came across one solution which works for our scenario.
The solution is to plug the difference between the way Windows 2003 and 2008 maintains its folder structure, because Office Interop depends on the desktop folder for file open/save intermediately. The 2003 system houses the desktop folder under systemprofile which is absent in 2008.
So when we create this folder on 2008 under the respective hierarchy as indicated below; the office Interop is able to save the file as required. This Desktop folder is required to be created under
C:\Windows\System32\config\systemprofile
AND
C:\Windows\SysWOW64\config\systemprofile
Also do check if .NET 1.1 is installed because its needed by Interop and ot preinstalled by Windows Server 2008
Or you can also Use SaveCopyas() method ist just take onargument as filename string)
Follow the Below steps:
Setp 1 :
On Web.config File Add the below in <system.web>Tag
<identity impersonate="true"
userName="domain\username"
password="userpassword"/>
UserName : Login Id who loged on the Machine(or server)
Password : Password who loged on the machine(or server)
Setp 2:
1. Go to Start->Run
2. Type “DCOMCNFG”
3. Open Console Root->Component Service->Computer->My Computer->DCOM Config
4. Right Click Property on “Microsoft Excel Application”
5. Go to Identity Tab
6. Select “This User”
a. User : Logged User Name
b. Password : Logged user Password
Comments
Post a Comment