Unmarshaller unmarshaller = createUnmarshaller(targetType.getObjectType());
StringReader reader = new StringReader((String) source);
return unmarshaller.unmarshal(reader);
}
} catch (Exception e) {
throw new RopRequestParseException((String) source, e);
}
}