代码如下,可以在服务器本地上成功调用word并进行处理,但通过客户端进行远程访问时,却还是在服务器上打开了word文档,请问是什么原因,我需要在客户端打开(客户端的D盘下有\DocTemp\Test.doc),应该如何处理?
        str = "D:\\DocTemp\\Test.doc";
        Object filename = str;
        Object ConfirmConversions = false;
        Object ReadOnly = false;
        Object AddToRecentFiles = false;        Object PasswordDocument = System.Type.Missing;
        Object PasswordTemplate = System.Type.Missing;
        Object Revert = System.Type.Missing;
        Object WritePasswordDocument = System.Type.Missing;
        Object WritePasswordTemplate = System.Type.Missing;
        Object Format = System.Type.Missing;
        Object Encoding = System.Type.Missing;
        Object Visible = true;
        Object OpenAndRepair = System.Type.Missing;
        Object DocumentDirection = System.Type.Missing;
        Object NoEncodingDialog = System.Type.Missing;
        Object XMLTransform = System.Type.Missing;        Word.ApplicationClass oWordApp = new Word.ApplicationClass();        Word.Document oWordDoc = oWordApp.Documents.Open(ref   filename, ref   ConfirmConversions,
        ref   ReadOnly, ref   AddToRecentFiles, ref   PasswordDocument, ref   PasswordTemplate,
        ref   Revert, ref   WritePasswordDocument, ref   WritePasswordTemplate, ref   Format,
        ref   Encoding, ref   Visible, ref   OpenAndRepair, ref   DocumentDirection,
        ref   NoEncodingDialog, ref   XMLTransform);        oWordDoc.Activate();
        oWordApp.Visible = true;