capturing values directly submitted to JSF

Hi...All,Is there any way to capture the parameter/value that is directly submitted to a JSF page from the URL? For e.ghttp://<host>:port/<context>/page.jsf?name=abcRegards,Praveen
[227 byte] By [pmohanana] at [2007-11-26 14:53:19]
# 1
on page request.getParameter("") will doon the backing bean:HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();then request.getParameter
jgalacambraa at 2007-7-8 8:41:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Hi..Thanks.,How will have fire a method in the backing bean from the Page that is receiving the query string parameters.?Can you please point to a link with sample code or provide one?The other solution I have is to write a Servlet. Regards,Praveen
pmohanana at 2007-7-8 8:41:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

i already gave the code for the backing bean..once you have the request you have the control like the one you are doing in jsp

HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();

String something = request.getParameter("");

jgalacambraa at 2007-7-8 8:41:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...