You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.
Use ServletContexts.instance().getRequest() in your backing bean.
For whatever reason that returns null for me in Seam 2.0.1.GA. I've had to do javax.faces.context.FacesContext.getCurrentInstance().getExternalContext().getRequest() instead.
Just make sure you really need HttpServletRequest... request parameters are accessible with @RequestParameter
For whatever reason that returns null for me in Seam 2.0.1.GA. I've had to do javax.faces.context.FacesContext.getCurrentInstance().getExternalContext().getRequest() instead.
Just make sure you really need HttpServletRequest... request parameters are accessible with @RequestParameter