Re: How to forward control to the jsp page from tapestry page.

2008-11-19 Thread Sonu bhavsar
Object onActivate() { return new java.net.URL("http://localhost:8080/hnet/login.jsp";); } I m trying to return an URL from an AJAX event handler i m using onActivate method. I m currently using tapestry 5.0.11 HugoPalma wrote: > > I think you might be trying to return

Re: How to forward control to the jsp page from tapestry page.

2008-11-19 Thread Hugo Palma
I think you might be trying to return an URL from an AJAX event handler method and not from a rendereing lifecycle event method. The URL return type is only allowed in the latest. On Wed, Nov 19, 2008 at 3:24 PM, Sonu bhavsar <[EMAIL PROTECTED]>wrote: > > I had tried this solution but it doesn't

Re: How to forward control to the jsp page from tapestry page.

2008-11-19 Thread Sonu bhavsar
I had tried this solution but it doesn't work. It shows the following exception Return type java.net.URL can not be handled. Configured return types are java.lang.Class, java.lang.Object, java.lang.String, org.apache.tapestry.Link, org.apache.tapestry.StreamResponse, org.apache.tapestry.runtime.C

Re: How to forward control to the jsp page from tapestry page.

2008-11-19 Thread Thiago H. de Paula Figueiredo
Em Wed, 19 Nov 2008 04:03:27 -0300, Sonu bhavsar <[EMAIL PROTECTED]> escreveu: I working in a project which consist of both jsp pages and tapestry pages. forwarding control to tapestry page from jsp page has no problem. But i failed to redirect control to jsp page from tapestry page Try t