G
Guest
I have developed some reports using VB.Net and Word2003 whereby I create reports in word programmatically directly in a Word document. Now the user wants the same capability on the Web. I tried to create a web project that calls the VB.Net Forms application that develops the reports. I am able to include the VB.Net app's DLL and create an app object and I can access the public methods in the object, but when I try to create an object
Dim wdDetails As New Microsoft.Office.Interop.Word.Documen
I get a web error message saying, "Access is denied" along with the following informatio
Exception Details: System.UnauthorizedAccessException: Access is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access
--------------------------------
My question is, How do I give permission to ASP.Net to run Word2003 or is the .Net web version of Word development excluded by design
Thanks
James J.
Dim wdDetails As New Microsoft.Office.Interop.Word.Documen
I get a web error message saying, "Access is denied" along with the following informatio
Exception Details: System.UnauthorizedAccessException: Access is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access
--------------------------------
My question is, How do I give permission to ASP.Net to run Word2003 or is the .Net web version of Word development excluded by design
Thanks
James J.