Re: [S2] ExecAndWait interceptor : request.getSession() null

2007-10-10 Thread jignesh(india)
Hi, I have faced the same problem.. But i am successfully able to crop it just by adding basicStack interceptors exact before execAndWait. E.g:- interceptor-ref name=basicStack/ interceptor-ref name=execAndWait/ Best Regards, Jignesh mleneveut wrote: Hi,

Re: [S2] ExecAndWait interceptor : request.getSession() null

2007-10-10 Thread Igor Vlasov
public class SearchAction extends ActionSupport implements ServletRequestAware { protected HttpServletRequest request; private HttpSession sess; public String execute() throws Exception{ /*I*/ sess = request.getSession();// not NULL ! try { // выполняется поиск и опрос

[S2] ExecAndWait interceptor : request.getSession() null

2007-08-10 Thread mleneveut
Hi, I try to add the execAndWait interceptor in my application. But now the request.getSession() returns null so my app crash in the first Action. What did I miss ? interceptor name=login class=org.myorg.coordination.interceptor.LoginInterceptor / interceptor-stack name=crmStack