我正在尝试导入之前签入的存档文档,但我想使用 RIDC 程序导入它,以下是我正在处理的代码:
IdcClientManager manager = new IdcClientManager();
IdcClient idcClient= manager.createClient("http://localhost/idc/idcplg");
IdcContext idcContext = new IdcContext("sysadmin", "idc");
// get the binder
DataBinder binder = idcClient.createBinder();
//populate the binder with the parameters
binder.putLocal("IdcService", "IMPORT_DOCUMENT");
binder.putLocal("Idc_Name", "idc");
binder.putLocal("aArchiveName", "idc//test1");
binder.putLocal("dDocName", "000022");
binder.putLocal("dCollectionName", "test_checkin");
ServiceResponse response = idcClient.sendRequest(idcContext, binder);
DataBinder binderResult = response.getResponseAsBinder();
但我收到以下错误:
Unable to execute service IMPORT_DOCUMENT and function executeArchiveMethod.
(System Error: The collection name must be specified.)
我指定了 dCollectionID、dCollectionName、dCollectionLocation,但结果相同。
谁能指导我有关此错误的信息,或者我在实施此代码时出错的地方。
为了更好地理解,我想告诉您,之前使用 WebDAV 签入了指定的文档。
任何形式的帮助将不胜感激。