We are using JSF 2.0. We have to pass in view parameters from one page to another page as the pages are view scoped. We are getting the values in the params but I would like to know if there is there a way to hide the parameters in the URL?
`public String submitForm(){`
`return "submitPage+faces-redirect=true&includeViewParameters=true&value=" + myBean.id;`
}