Hi, Am 04.09.2012 um 13:06 schrieb Dascalita Dragos:
> Hi, > I'm having this issue that during long file uploads, by the time upload > completes, the session expires and users can't save data into JCR. > I tried calling an URL [1] from time to time during uploads, to try keeping > the session active, but even with that, the session still expires. > > What would be the best way to keep the session active during uploads ? Each request has its own session. The session is created when request processing starts and logged out at the end of processing. So, if your upload takes a long time, there may be other time outs taking place than the session timing out. In addition IIRC a JCR session actually never times out. Or are you talking about an HTTP Session ? Regards Felix
