Hi Kevin!
The "model" came from the name of the Map when I was constructing the ModelAndView object: return new ModelAndView("viewPage", "model", model);
I tried both <c:if test="${myCar.isRunning()}"> and <c:if test="${model.myCar.isRunning()}"> and I receive a similar ServletException each time: The function isRunning must be used with a prefix when a default namespace is not specified.
I've tried to Google the error message, but I've come up with dead ends. Just to be sure, this is how I am creating my model and returning it:
Code:
Map model = new HashMap();
model.put("myCar", new Car("Grand Marquis"));
return new ModelAndView("myView", "model", model);
Thanks again!
smv