return new RequestAttributeMapFacade(_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)
return new SessionAttributeMapFacade(((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")) {
if(!_requestParameter)