Right now on each f:ajax (or a4j:ajax) request I'm making, the POST includes the query string which I don't want. Is there a way to not have it pass them on? I don't understand why it does this anyways.
Example: Request page
GET /mypage.xhtml?zipcode=10101
Then any ajax calls fired by f:ajax on that page does a post like so:
POST /mypage.xhtml?zipcode=10101
This causes a lot of problems because if i changed the form element for zip on the page with ajax, any other ajax post will actually cause the original zip code passed into the page to get re-read and reset on my backing bean.
I really want to tell all f:ajax calls to STOP putting the request parameters in the URL, like so:
POST /mypage.xhtml (regardless of what request paremteres were on the original page GET).
<form id="myForm-j_idt47" name="myForm-j_idt47" method="post" action="/mypage.xhtml?zipcode=10101" enctype="application/x-www-form-urlencoded">I guess I need to see if there is a way to modify h:form's action – sairoland Jul 16 '11 at 16:11