2

我正在使用 Worksite API 在 iManage(8.5 版)中查询文档。我在下面列出了我的代码。如果我只使用一个搜索参数,那么代码就可以正常工作。但是,如果我添加多个参数,则它返回 null 或无结果(result.Count = 0)

然后我更改了我的代码以使用 ManOrQuery 类(由我的 Worksite API 提供,请参阅注释行),但这仍然不起作用。

// Search for documents matching the specified date range.
iManageSearch rds = new iManageSearch(isession);

// Populate searchparameters
IManProfileSearchParameters searchparams = Utility.CreateUnpopulatedProfileParams(idms);

//searchparams.Add(imProfileAttributeID.imProfileCreateDate, dateRange.Value);
//searchparams.Add(imProfileAttributeID.imProfileAuthor, srchKey);
//searchparams.Add(imProfileAttributeID.imProfileFullText, srchKey);
searchparams.Add(imProfileAttributeID.imProfileDocNum, srchKey);
//searchparams.Add(imProfileAttributeID.imProfileDescription, srchKey);

// Search documents
IManDocuments results = rds.GetDocuments(Utility.BuildDatabaseList(isession.Databases), searchparams);

// tried the other way to search document


//QueryBuilder qb = new QueryBuilder();
//ManOrQuery orquery = qb.CreateORQuery;
//qb.AddORSearchFieldValue(orquery, imProfileAttributeID.imProfileDocNum, srchKey);
//qb.AddORSearchFieldValue(orquery, imProfileAttributeID.imProfileAuthor, srchKey);
//qb.AddORSearchFieldValue(orquery, imProfileAttributeID.imProfileFullText, srchKey);
//IManContents results = qb.GetContents(iworkarea, Utility.BuildDatabaseList(isession.Databases), (IManQuery)orquery);
int c = results.Count;

在我的 UI 上,我有一个文本框供用户输入他们的搜索凭据。我想将搜索值与Author,DocNumber以及DocTitle文档的内容进行比较。我的目标是建立一个像(docAuthor=srchKey OR docNum=srchKey OR docDescription = srchKey ...). 我一直在敲我的头,希望有人能帮助我。谢谢你。

PS:我还在这里提到了一篇文章How to get information out of iManage / Desksite,但这对我不起作用......

4

1 回答 1

2

我知道自从这个问题发布以来已经有一段时间了,我已经在 stackoverflow 上进行了一些搜索,但在这个问题上找不到太多帮助我,但是我已经设法编写了一些有效的代码(至少对我来说) 我希望如果它帮助你为时已晚,它可能会帮助别人。

我看不到您如何在上面的代码中设置数据库,因此那里可能存在问题 - 因为添加搜索参数的语法似乎是正确的。

更新: 我已经和我们的管理员谈过了,似乎要进行搜索,这取决于服务器的索引器设置。这可能是您的代码无法正常工作的原因。对我来说,我必须从 WorkSite Service 管理器中的数据库属性中禁用索引器,以便它使用 SQL

            IManDMS dms = (IManDMS)Activator.CreateInstance(Type.GetTypeFromProgID("iManage.ManDMS"));

            IManSession session = dms.Sessions.Add(serverName);
            session.TrustedLogin2(userToken);

            IManDatabase database = session.Databases.ItemByName(libraryName);
            IManProfileSearchParameters searchparameters = dms.CreateProfileSearchParameters();

            // add search parameters            
            // this works (just to prove that we can search for a document)                
            searchparameters.Add(imProfileAttributeID.imProfileDocNum, "4882408");
            searchparameters.Add(imProfileAttributeID.imProfileCreateDate, new DateTime(2015, 04, 8).ToShortDateString());           

            // run the search
            IManContents searchResults = database.SearchDocuments(searchparameters, true);

            // process the results
            foreach (IManDocument item in ((IEnumerable)searchResults).OfType<IManDocument>())
            {   
                // do something with the document

            }

            session.Logout();
            dms.Sessions.RemoveByObject(session);
于 2015-05-14T08:41:10.313 回答