在Word 2016中打开Imanage的文档

时间:2016-05-26 15:13:30

标签: c# .net imanage

我试图在MS Word中,在临时测试应用程序(用于调试)中打开一个Imanage文档,以便稍后复制到ActiveX控件项目中。弹出的错误是:

  

w3wp.exe中的0x7618851A(msvcrt.dll)抛出异常:0xC0000005:访问>违规读取位置0x09801000。

     

如果存在此异常的处理程序,则可以安全地继续该程序。

运行cmd.Execute行时出错,我不确定为什么会收到错误。

    using IManage;
    using IMANEXTLib;
    using System;        

        namespace WebApplication3
        {
            public partial class WebForm2 : System.Web.UI.Page
            {
                IManDatabase imanagedatabase;
                IManDMS myDMS = new ManDMSClass();

                protected void Page_Load(object sender, EventArgs e)
                {
                    openImanageDoc("docNumber", "versionNumber", "server", "database", ReadOnly);
                }
                public void imanageLogin(string server, string database)
                {
                    try
                    {
                        IManSession session = myDMS.Sessions.Add(server);
                        IManWorkArea oWorkArea = session.WorkArea;
                        session.TrustedLogin();

                        foreach (IManDatabase dbase in session.Databases)
                        {
                            if (dbase.Name == database)
                            {
                                imanagedatabase = dbase;
                            }
                        }
                    }
                    catch (Exception ex)
                    {
                        throw ex;
                    }
                }

                public void openImanageDoc(string docNo, string versionNo, string server, string database, bool isReadOnly = true)
                {
                    IManDocument doc;
                    try
                    {
                        imanageLogin(server, database);
                        int iDocNo = int.Parse(docNo);
                        int iVersion = int.Parse(versionNo);
                        doc = imanagedatabase.GetDocument(iDocNo, iVersion);
                        openNRTDocument(ref doc, isReadOnly);
                        imanagedatabase.Session.Logout();
                        myDMS.Close();
                    }
                    catch (Exception Ex)
                    {
                        imanagedatabase.Session.Logout();
                        throw Ex;
                    }
                    finally
                    {
                        imanagedatabase = null;
                        myDMS = null;

                    }
                }


                public void openNRTDocument(ref IManDocument nrtDocument, Boolean isReadonly)
                {
                    OpenCmd cmd = new OpenCmd();
                    ContextItems objContextItems = new ContextItems();


                    objContextItems.Add("NRTDMS", myDMS);
                    objContextItems.Add("SelectedNRTDocuments", new[] { (NRTDocument)nrtDocument.LatestVersion });
                    objContextItems.Add("IManExt.OpenCmd.Integration", false);
                    objContextItems.Add("IManExt.OpenCmd.NoCmdUI", true);

                    cmd.Initialize(objContextItems);
                    cmd.Update();
                    cmd.Execute();

                }
            }
        }

由于错误的性质,我认为这是一个配置问题而不是代码错误,尽管我可能完全错误,因为我对编程很新。

我发现w3wp.exe是由应用程序池创建的IIS工作进程,但除此之外我不知道数字代码代表什么。非常感谢任何帮助或建议。

1 个答案:

答案 0 :(得分:3)

OpenCmd实例引发了错误,因为它最有可能尝试访问本地注册表设置等资源。除非您使用ActiveX(特定于Internet Explorer)等专有技术托管您的代码,否则无法在Web应用程序中执行此操作

实际上,你不适合在这里使用OpenCmd。这些类型的命令(iManage" ICommand"实现)旨在用于安装了iManage FileSite或DeskSite客户端的常规Windows应用程序。这些命令都是所谓的扩展性COM库(iManExt.dll,iManExt2.dll等)的一部分,不应在Web应用程序中使用,或至少谨慎使用,因为它们可能不适当地尝试访问注册表,如您已经发现,甚至可能显示输入Win32对话框。

对于Web应用程序,您应该将自己限制在低级别的iManage COM库(IManage.dll)中。这实际上就是iManage自己使用自己的WorkSite Web应用程序所做的事情

你应该做的就是用这样的东西替换你的openNRTDocument方法:

// create a temporary file on your web server..
var filePath = Path.GetTempFileName();
// fetch a copy of the iManage document and save to the temporary file location
doc.GetCopy(filePath, imGetCopyOptions.imNativeFormat);

在MVC Web应用程序中,您只需返回一个FileContentResult,如下所示:

// read entire document as a byte array
var docContent = File.ReadAllBytes(filePath);
// delete temporary copy of file
File.Delete(filePath);
// return byte stream to web client
return File(stream, MediaTypeNames.Application.Octet, fileName);

在Web窗体应用程序中,您可以执行以下操作:

// set content disposition as appropriate - here example is for Word DOCX files
Response.ContentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
// write file to HTTP content output stream
Response.WriteFile(filePath);
Response.End();