Hi Filip,

This works very well, just a quick question, in this function:

Object onActivate(Object obj)

obj will always be the first part of the path, example, if I pass
www.mydomian.com/mypage/123
obj contains only 'mypage', is there a way to get also '123'?

angelo



Filip S. Adamsen-2 wrote:
> 
> Yeah, there is. At least I do that...
> 
> I use onActivate on my Index page like this:
> 
>    Object onActivate(Object obj) {
>      return ErrorNotFound.class;
>    }
> 
> Then, in my ErrorNotFound page, I set the HTTP Status Code to 404 to 
> make the search engines happy:
> 
>    @Inject
>    private RequestGlobals requestGlobals;
> 
>    public void setupRender() {
>  
> requestGlobals.getHTTPServletResponse().setStatus(HttpServletResponse.SC_NOT_FOUND);
>    }
> 
> Works like a charm.
> 
> -Filip
> 
> On 2008-08-14 14:41, Angelo Chen wrote:
>> hi,
>> 
>> how to define a default page that will be shown to the browser if a non
>> existing path is entered? example:
>> www.mydomain.com/page1, page1 does not exist, tomcat will display a HTTP
>> Status 404 - /page1, any way to re-direct this in t5 app to a t5 page?
>> thanks.
>> 
>> angelo
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/t5%3A-a-default-page-for-non-exist-path-tp18980767p18992153.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to