I have a question and it is probably pretty stupid, but here it goes.
I have developed an ASP.NET web application, all it does is open a word document using DCOM, find and replace a few values, print the file and then close and not save the changes. This works when I test it from my local machine, but not when I deploy it to the server.
I have configured DCOM to use impersonation, and configured a user to launch the application (the user is an administrator). The IWAM user is set to allow impersonation and the web application's web.config file has <identity impersonation="true"/> in it.
When I look at the processes on the server and the folder the file is in, I see the WINWORD.EXE process start and take up a little CPU time (a very short time) then quites. I notice that the ~temp.doc file is not created inside the template's folder (it was created on my local machine). This tells me that word is started, but it cannot open the document for some reason.
All the permissions on the folder should be good. I even tested Everyone - Full Control and this still did not work. I also have Everyone - Full Control in the DCOM launch and access permissions. PLEASE HELP. What do I need to do?
I have developed an ASP.NET web application, all it does is open a word document using DCOM, find and replace a few values, print the file and then close and not save the changes. This works when I test it from my local machine, but not when I deploy it to the server.
I have configured DCOM to use impersonation, and configured a user to launch the application (the user is an administrator). The IWAM user is set to allow impersonation and the web application's web.config file has <identity impersonation="true"/> in it.
When I look at the processes on the server and the folder the file is in, I see the WINWORD.EXE process start and take up a little CPU time (a very short time) then quites. I notice that the ~temp.doc file is not created inside the template's folder (it was created on my local machine). This tells me that word is started, but it cannot open the document for some reason.
All the permissions on the folder should be good. I even tested Everyone - Full Control and this still did not work. I also have Everyone - Full Control in the DCOM launch and access permissions. PLEASE HELP. What do I need to do?