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]

# 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
# 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("");