/**
* Executes the task specified by the request url.
*/
public static void process() {
Task task = null;
TaskContext context = null;
try {
context = new TaskContext(request);
task = ReflectionUtils.newInstance(Task.class, context.getTaskClassName());
} catch (Exception e) {