1 Reply Latest reply on Feb 25, 2010 6:29 PM by luxspes

    Do not show request parameters on URL

      Hi,


      I have started using Seam with ICEfaces some weeks back. I have created a input field where user can enter some data. I forward the current page to the next page using following code in xhtml:


      <s:link view="/hello.seam" value="Go to hello">
            <f:param name="name" value="#{homeAction.name}"/>
            <f:param name="firstResult" value="#{homeAction.item}"/>
      </s:link>




      When I submit the page I get url like


      http://localhost:7001/SeamICEfaces/hello.seam?firstResult=3&name=Emp1&cid=7



      Now I want that the request parameters(name and firstResult) are not shown in the url at all. We have functionality of POST submit in case of jsp. Do we have something similar to it in Seam?


      Sorry for inconvenience if the problem is trivial.


      Thank you for your time.