I would like to know if there is some way to set the timeout for a POST request(I guess it is a POST request) from a JSP using JSF tags.
I usually work with ExtJS and do this kinda stuff through AJAX(it's easy to configure the timeout) and don't know almost anything of JSF.
Anyway I'm maintaining a legacy system and when the request is done the interface stops listening about 3 minutes after, I would like the interface to wait until there is a response of the server, it doesn't matter if it takes 10 or 15 minutes.
Here is the action method which I guess is a standard POST
<div style="position:absolute; top:-100">
<h:commandLink action="#{ReporteSeguros.buscarRegistros}" id="buscarRegistros" target="fraGridPagos">
</h:commandLink>
<h:inputHidden id="sucursal" value="#{ReporteSeguros.sucursal}"/>
<h:inputHidden id="region" value="#{ReporteSeguros.region}"/>
</div>
Any help is appreciated.