I'm using IceFaces 1.8.2 and trying to get a parameter from the URL using:
((HttpServletRequest) FacesContext.getCurrentInstance()
.getExternalContext().getRequest()).getParameter(name);
This works fine on the inital request. However, when I do a partialSubmit on a component, it stops working. I'm assuming that its to do with how requests are processed when partial submits are done.
Is there a workaround? At the moment, I'm having to
((HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext()
.getRequest()).getQueryString();
and manually pass the query string.
Thanks.