The error you are seeing is because ACEGI re-routes your request to the login page. There are several possible solutions. Two are:
1) As we have done embed a timer with a popup on the page that triggers before the session expiry and re-directs the user to the login page. 2) Provide a separate web filter chain in the sercurity config that returns a 403 error instead of trying to re-direct to the login page. Your callback function would have to handle the error and re-direct the user to the login page. Mike On 11/9/07, Julien C. <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a problem with DWR. When I call my dwr function and if my session > is expired my callback function is not called. So the function failed > silently. firebug just indicate : "Invalid content type: 'text/html; > charset=utf-8'" > > Is there a solution ? > Thanks. Julien C. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
