inputQuestion = request.getParameter("manualInput");
} else {
inputQuestion = request.getParameter("selectInput");
}
inputQuestion = inputQuestion.replace(",", ".");
LinguisticComponent chunk = null;
String col_data = null;
try {
chunk = new LinguisticComponent(Directory.directoryLinguisticComponent);
chunk.parseQuestion(inputQuestion, col_data);
} catch (Exception ex) {
Logger.getLogger(Run.class.getName()).log(Level.SEVERE, null, ex);
}
String status = null;