return new RequestAttributeMap(_request);
else
throw new IllegalExpressionException("The request data binding context can not be updated from a request parameter.");
} else if(name.equals("sessionScope")) {
if(_requestParameter == false)
return new SessionAttributeMap(((HttpServletRequest)_request).getSession());
else
throw new IllegalExpressionException("The session data binding context can not be updated from a request parameter.");
}
// @bug: need to get the ServletContext from somewhere
else if(name.equals("applicationScope")) {