我为添加简单工作流的空间创建了规则。如果用户从该工作流中批准文件,则该文件将被移动到另一个空间。
现在我想使用露天网络服务客户端批准文件。为此我使用以下代码,但不知何故它没有将文件移动到另一个空间(不执行批准操作)
ActionServiceSoapBindingStub actionService = WebServiceFactory.getActionService();
Rule[] rules = actionService.getRules(parentRef, new RuleFilter());
for (int i = 0; i < rules.length; i++) {
Rule rule = rules[i];
if(rule.getTitle().equals("Upload workflow rule")) {
ActionExecutionResult[] results = actionService.executeActions(predicete,
new Action[{rule.getAction()});
}
}
谢谢,约格什