CalculatorBean hl = new CalculatorBean();
hl = parseRequest(request);
//todo - test this - this will probably fail to run with a nullpointerexceptino
SpringDecisionTableLoader dtLoader = new SpringDecisionTableLoader();
hl = (CalculatorBean)dtLoader.executeDecisionTable(hl,true);
request.setAttribute("result", hl);
rd = request.getRequestDispatcher("/jsp/m3/result.jsp");
rd.forward(request, response);