Currently I have serious problems with my webapp, because it has strange behavior behind a web proxy ISA Server 2006. I found the problem was because I was using h:links to call some pages and ISA makes cache from that. I change the h:link to h:commandLink but the cache is the same. Doing debug of the request with firebug I find this:
POST currentPage
GET nextPage
The first is the page where i made click and the second one is the page I want to go. 1. I don't understand why there are 2 request? 2. I dont know why the command is sending a GET request?
Can anybody help me.... ????