* @return
* @throws Exception
*/
private String[] runIdentification1(DigitalObject digo, WorkflowResult wfresult) throws Exception{
List<Parameter> parameterList = new ArrayList<Parameter>();
IdentifyResult results = identify1.identify(digo,parameterList);
ServiceReport report = results.getReport();
List<URI> types = results.getTypes();
if(report.getType() == Type.ERROR){
String s = "Service execution failed: " + report.getMessage();
log.debug(s);
throw new Exception(s);