Re: JSP forward Equivalent in mod_perl

2007-01-17 Thread Perrin Harkins
Geoffrey Young wrote: $r->internal_redirect That's the most equivalent. You can also just call some other handler directly: Foo::handler($r); - Perrin

Re: JSP forward Equivalent in mod_perl

2007-01-17 Thread Geoffrey Young
Tracy12 wrote: > Hi, > > Java/Servlet/jsp world there are two types of http forwards/redirect > > redirect -> This is make a complete new request, loose all the request > parameters > forward-> Will preserve all the information (e.g parameters) and forward to > the other URL > > > in mod_perl w