Re: T5 forward to page

2007-06-07 Thread Janko Muzykant
Being more precise I wanted to use DWR to re-generate my page once again via XMLHttpRequest. It looks like this: - javascript calls my ajax java method - ajax method calls DWR's forwardToString(..) which is essentialy getRequestDispatcher.forward and returns as a result html content. and here i r

Re: T5 forward to page

2007-06-07 Thread Howard Lewis Ship
Not sure why you would want to. Inside a T5 application, Tapestry takes care of sending redirects. From a JSP, a Tapestry page is simply the name of the page, i.e. foo.jsp: Back to the Tapestry Menu Page On 6/7/07, umrzyk <[EMAIL PROTECTED]> wrote: hi, as I noticed, it is not possible to c

T5 forward to page

2007-06-07 Thread umrzyk
hi, as I noticed, it is not possible to call request.getRequestDispatcher("/my/superb/page").forward(...) as such a page is not a "real" resource. all other resources like "/index.jsp" are obviously recognized correctly. is it somehow possible to forward request to page generated by T5 ? regar