我试图在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工作进程,但除此之外,我不知道数字代码代表什么。任何帮助或建议,我们将不胜感激。
最佳答案
该错误由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();
关于c# - 在Word 2016中从Imanage打开文档,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37464825/