Re: T5: Exception occurs in onActivate

2008-01-13 Thread Howard Lewis Ship
What happening is that your HTML is referencing a static file. The file does not exist, and the format of the URL makes it look like a Tapestry page render or action request. If the file did exist, Tapestry would let the servlet container handle it. On Jan 13, 2008 8:16 AM, adamh <[EMAIL PROTECTE

Re: T5: Exception occurs in onActivate

2008-01-13 Thread adamh
Hi All, I'm seeing the same behaviour, I have a page that displays a list of items which link off to a viewitem page with a pagelink with an item id for the context (a string). When I hit the viewitem page I'm seeing the onActivate event handler being called twice, the first time I can see that t

Re: T5: Exception occurs in onActivate

2007-10-10 Thread Josh Canfield
My first guess would be that your rendered page has image/script elements that are referenced using relative urls: which would be translated to "/productdetail/assets/img.gif" in the browser request. My second guess is that the link you clicked on isn't what you think, but that seems less l

T5: Exception occurs in onActivate

2007-10-10 Thread Josh Penza
Can someone explain the following exception? I click on a productdetail url like ('/productdetail/9) The system.out in ProductDetail. java prints nicely 9 to the screen. ** *void* onActivate(Long productId) { *this*.productId = productId; System.*out*.println("ProductDetail.onActivat