Re: how to forward request to an external URL

2007-10-10 Thread Al Maw
Nili Adoram wrote: Suppose I want to forward the HTTP request to some external url (NOT a wicket page, e.g. a JSP page). I want to end the request cycle at this point ( not include this URL inside my page). How can I simulate request.getRequestDispatcher(url).forward() within a wicket page?

Re: how to forward request to an external URL

2007-10-10 Thread Igor Vaynberg
On 10/10/07, Al Maw [EMAIL PROTECTED] wrote: Nili Adoram wrote: Suppose I want to forward the HTTP request to some external url (NOT a wicket page, e.g. a JSP page). I want to end the request cycle at this point ( not include this URL inside my page). How can I simulate

how to forward request to an external URL

2007-10-09 Thread Nili Adoram
Hi all, Suppose I want to forward the HTTP request to some external url (NOT a wicket page, e.g. a JSP page). I want to end the request cycle at this point ( not include this URL inside my page). How can I simulate request.getRequestDispatcher(url).forward() within a wicket page? Thanks Nili

Re: how to forward request to an external URL

2007-10-09 Thread Matthijs Wensveen
For completeness sake: http://cwiki.apache.org/WICKET/how-to-redirect-to-an-external-non-wicket-page.html Igor Vaynberg wrote: requestcycle.setrequesttarget(new redirectrequesttarget(url)); -igor On 10/9/07, Nili Adoram [EMAIL PROTECTED] wrote: Hi all, Suppose I want to forward the