Hello,
Try this:
Map requestMap = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();String name = (String) requestMap.get("name");
If isn't worked one of these methods probably will solve your problem.
FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();FacesContext.getCurrentInstance().getExternalContext().getRequestHeaderMap();
hth.
properties in the faces-config.xml so that those
params will be put in the backing bean
'automatically'.
But isn't more easy do this in the code ?
What is the benefits to do this in the faces-config.xml ?
Thank you in advice.