JSF PAGE REDISPLAYING THE CALLING PAGE

I am developing a jsf application where my jsp is invoked from a servlet filter which is product.jsp .

When i click on submit buton on product.jsp after selecting the product the navigation rule doesn't work inplace of displaying pricedetail.jsp it goes back to product.jsp.

Its frustating unable to find why? Please help to find the reason it does so?

Thanks.

[387 byte] By [princea] at [2007-11-27 2:14:49]
# 1
You may have validation errors.Make sure you have h:messages added to your page for verification.
rlubkea at 2007-7-12 2:10:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Hi

Validation ?

I am not doing any validations though .its just page navigation am testing

On product.jsp it displays a list of products and on choosing one and pressing submit button it has to take user to picedetails page .

This is a unique issue rest all pages work correctly except this one?

Thanks.

princea at 2007-7-12 2:10:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
You never know (maybe added required="true" ?). Just add <h:messages /> to the code. Small effort and maybe the solution is just there. It's not only likely a validation error, but it can also be a conversion error.
BalusCa at 2007-7-12 2:10:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
True . Its dificult to find whats causing the isue. I did try with imediate="true" but same results.Otherwise there is no conversion or validation i'll try that as well and see what results.Thanks.
princea at 2007-7-12 2:10:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...