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
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
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
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